mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
12 lines
151 B
C
12 lines
151 B
C
#include "f2c.h"
|
|
|
|
#define log10e 0.43429448190325182765
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
d_lg10 (doublereal * x)
|
|
{
|
|
return (log10e * log (*x));
|
|
}
|