mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-15 23:45:27 +08:00
4d85a6fea6
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
11 lines
141 B
C
11 lines
141 B
C
#include "f2c.h"
|
|
|
|
#define log10e 0.43429448190325182765
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double r_lg10(real *x)
|
|
{
|
|
return( log10e * log(*x) );
|
|
}
|