1999-09-18 12:51:31 +02:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#define log10e 0.43429448190325182765
|
|
|
|
|
|
|
|
#undef abs
|
|
|
|
#include <math.h>
|
2003-07-11 05:42:19 +02:00
|
|
|
double
|
|
|
|
d_lg10 (doublereal * x)
|
1999-09-18 12:51:31 +02:00
|
|
|
{
|
2003-07-11 05:42:19 +02:00
|
|
|
return (log10e * log (*x));
|
1999-09-18 12:51:31 +02:00
|
|
|
}
|