gcc/libf2c/libF77/d_lg10.c

11 lines
147 B
C
Raw Normal View History

#include "f2c.h"
#define log10e 0.43429448190325182765
#undef abs
#include <math.h>
double d_lg10(doublereal *x)
{
return( log10e * log(*x) );
}