1994-10-26 18:17:41 +00:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#ifdef KR_headers
|
1997-02-24 17:44:08 +00:00
|
|
|
double log10();
|
1994-10-26 18:17:41 +00:00
|
|
|
double d_lg10(x) doublereal *x;
|
|
|
|
#else
|
|
|
|
#undef abs
|
|
|
|
#include "math.h"
|
|
|
|
double d_lg10(doublereal *x)
|
|
|
|
#endif
|
|
|
|
{
|
1997-02-24 17:44:08 +00:00
|
|
|
return( log10(*x) );
|
1994-10-26 18:17:41 +00:00
|
|
|
}
|