diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1997-02-16 17:54:58 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1997-02-16 17:54:58 +0000 |
| commit | 799e5901b315dba4730204056c5d4c692cf3f7b9 (patch) | |
| tree | 899406fde5d503505ae4f16452cbf6334974850f | |
| parent | 72d8d94d6fe43e71a78956d9b417a1a65d20e87e (diff) | |
Notes
| -rw-r--r-- | lib/libF77/r_lg10.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libF77/r_lg10.c b/lib/libF77/r_lg10.c index 4ea02f451003..87013aec41d2 100644 --- a/lib/libF77/r_lg10.c +++ b/lib/libF77/r_lg10.c @@ -1,7 +1,5 @@ #include "f2c.h" -#define log10e 0.43429448190325182765 - #ifdef KR_headers double log(); double r_lg10(x) real *x; @@ -11,5 +9,5 @@ double r_lg10(x) real *x; double r_lg10(real *x) #endif { -return( log10e * log(*x) ); +return( log10(*x) ); } |
