diff options
Diffstat (limited to 'libf2c/libF77/d_log.c')
-rw-r--r-- | libf2c/libF77/d_log.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libf2c/libF77/d_log.c b/libf2c/libF77/d_log.c index 592015b2821..50bbefd93c1 100644 --- a/libf2c/libF77/d_log.c +++ b/libf2c/libF77/d_log.c @@ -1,13 +1,8 @@ #include "f2c.h" -#ifdef KR_headers -double log(); -double d_log(x) doublereal *x; -#else #undef abs #include <math.h> double d_log(doublereal *x) -#endif { return( log(*x) ); } |