1994-10-26 18:17:41 +00:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#ifdef KR_headers
|
1997-02-24 17:35:33 +00:00
|
|
|
float log10f();
|
1994-10-26 18:17:41 +00:00
|
|
|
double r_lg10(x) real *x;
|
|
|
|
#else
|
|
|
|
#undef abs
|
|
|
|
#include "math.h"
|
|
|
|
double r_lg10(real *x)
|
|
|
|
#endif
|
|
|
|
{
|
1997-02-24 17:35:33 +00:00
|
|
|
return( log10f(*x) );
|
1994-10-26 18:17:41 +00:00
|
|
|
}
|