aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/r_log.c
diff options
context:
space:
mode:
authorNo Author <no-author@gcc.gnu.org>1998-03-22 09:42:52 +0000
committerNo Author <no-author@gcc.gnu.org>1998-03-22 09:42:52 +0000
commita015f0328193666b8c8e79cbd4f2e0370ca76974 (patch)
tree856efc13c6c3ca9aef68a1116fd8b6666a610408 /gcc/f/runtime/libF77/r_log.c
parent5aff8e796871e8cf53bded3a439b4fcec810a6f4 (diff)
This commit was manufactured by cvs2svn to create tag 'g77_0_5_22'.releases/g77-0.5.22
From-SVN: r18752
Diffstat (limited to 'gcc/f/runtime/libF77/r_log.c')
-rw-r--r--gcc/f/runtime/libF77/r_log.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/f/runtime/libF77/r_log.c b/gcc/f/runtime/libF77/r_log.c
deleted file mode 100644
index 4873fb418e8..00000000000
--- a/gcc/f/runtime/libF77/r_log.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "f2c.h"
-
-#ifdef KR_headers
-double log();
-double r_log(x) real *x;
-#else
-#undef abs
-#include <math.h>
-double r_log(real *x)
-#endif
-{
-return( log(*x) );
-}