ack/lang/fortran/lib/libF77/r_lg10.c
1991-10-07 16:59:33 +00:00

12 lines
130 B
C

#include "f2c.h"
#define log10e 0.43429448190325182765
double r_lg10(x)
real *x;
{
double log();
return( log10e * log(*x) );
}