mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 00:30:05 +08:00
11 lines
147 B
C
11 lines
147 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#define log10e 0.43429448190325182765
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double d_lg10(doublereal *x)
|
||
|
{
|
||
|
return( log10e * log(*x) );
|
||
|
}
|