Pristine Ack-5.5
[Ack-5.5.git] / lang / fortran / lib / libF77 / r_lg10.c
1 #include "f2c.h"
2
3 #define log10e 0.43429448190325182765
4
5 double r_lg10(x)
6 real *x;
7 {
8 double log();
9
10 return( log10e * log(*x) );
11 }