mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 10:35:02 +08:00
4d85a6fea6
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
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) );
|
|
}
|