mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-21 17:09:45 +08:00
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));
|
|
}
|