aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/d_log.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-06-01 01:53:53 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-06-01 01:53:53 +0000
commit4d85a6fea685603493f2a4dbcfd36d6fd25fbe26 (patch)
tree693a2481f59e62982389a205d2b15b5bfa3e0b2b /libf2c/libF77/d_log.c
parent1e730c5ca76832a10c16300f12ab0447ca1b07a1 (diff)
downloadgcc-4d85a6fea685603493f2a4dbcfd36d6fd25fbe26.zip
gcc-4d85a6fea685603493f2a4dbcfd36d6fd25fbe26.tar.gz
gcc-4d85a6fea685603493f2a4dbcfd36d6fd25fbe26.tar.bz2
*: Delete KR_headers cruft.
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
Diffstat (limited to 'libf2c/libF77/d_log.c')
-rw-r--r--libf2c/libF77/d_log.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libf2c/libF77/d_log.c b/libf2c/libF77/d_log.c
index 592015b..50bbefd 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) );
}