407c72cb29
* libF77/*: Fix formatting. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54145
12 lines
151 B
C
12 lines
151 B
C
#include "f2c.h"
|
|
|
|
#define log10e 0.43429448190325182765
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
d_lg10 (doublereal * x)
|
|
{
|
|
return (log10e * log (*x));
|
|
}
|