summaryrefslogtreecommitdiffstats
path: root/lib/libF77/d_lg10.c
blob: 3135881c56a64dd0ffd90c9f415ae883b8c9e89c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double log10();
double d_lg10(x) doublereal *x;
#else
#undef abs
#include "math.h"
double d_lg10(doublereal *x)
#endif
{
return( log10(*x) );
}
OpenPOWER on IntegriCloud