12 lines
136 B
C
12 lines
136 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#define log10e 0.43429448190325182765
|
||
|
|
||
|
double d_lg10(x)
|
||
|
doublereal *x;
|
||
|
{
|
||
|
double log();
|
||
|
|
||
|
return( log10e * log(*x) );
|
||
|
}
|