summaryrefslogtreecommitdiff
path: root/libf2c/libF77/d_lg10.c
blob: 32824b88df0f65c5e35bb458d6885e50fc544a79 (plain)
1
2
3
4
5
6
7
8
9
10
#include "f2c.h"

#define log10e 0.43429448190325182765

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