Daily bump.
[official-gcc.git] / libf2c / libF77 / r_lg10.c
blob51f84201711829b65c7929a476e7cffad91763e2
1 #include "f2c.h"
3 #define log10e 0.43429448190325182765
5 #ifdef KR_headers
6 double log();
7 double r_lg10(x) real *x;
8 #else
9 #undef abs
10 #include <math.h>
11 double r_lg10(real *x)
12 #endif
14 return( log10e * log(*x) );