1998-01-31 18:37:08 -07:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#define log10e 0.43429448190325182765
|
|
|
|
|
|
|
|
#undef abs
|
|
|
|
#include <math.h>
|
2002-06-01 12:38:32 +00:00
|
|
|
double
|
|
|
|
r_lg10 (real * x)
|
1998-01-31 18:37:08 -07:00
|
|
|
{
|
2002-06-01 12:38:32 +00:00
|
|
|
return (log10e * log (*x));
|
1998-01-31 18:37:08 -07:00
|
|
|
}
|