aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/z_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/f/runtime/libF77/z_log.c')
-rw-r--r--gcc/f/runtime/libF77/z_log.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/f/runtime/libF77/z_log.c b/gcc/f/runtime/libF77/z_log.c
deleted file mode 100644
index 48afca63d6d..00000000000
--- a/gcc/f/runtime/libF77/z_log.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "f2c.h"
-
-#ifdef KR_headers
-double log(), f__cabs(), atan2();
-VOID z_log(resx, z) doublecomplex *resx, *z;
-#else
-#undef abs
-#include <math.h>
-extern double f__cabs(double, double);
-void z_log(doublecomplex *resx, doublecomplex *z)
-#endif
-{
-doublecomplex res;
-
-res.i = atan2(z->i, z->r);
-res.r = log( f__cabs( z->r, z->i ) );
-
-resx->r = res.r;
-resx->i = res.i;
-}