V7M/src/libF77/r_lg10.c

Compare this file to the similar file:
Show the results in this format:

#define log10e 0.43429448190325182765

double r_lg10(x)
float *x;
{
double log();

return( log10e * log(*x) );
}