aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/pow_ci.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/f/runtime/libF77/pow_ci.c')
-rw-r--r--gcc/f/runtime/libF77/pow_ci.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/f/runtime/libF77/pow_ci.c b/gcc/f/runtime/libF77/pow_ci.c
deleted file mode 100644
index 37e2ce0f2eb..00000000000
--- a/gcc/f/runtime/libF77/pow_ci.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "f2c.h"
-
-#ifdef KR_headers
-VOID pow_ci(p, a, b) /* p = a**b */
- complex *p, *a; integer *b;
-#else
-extern void pow_zi(doublecomplex*, doublecomplex*, integer*);
-void pow_ci(complex *p, complex *a, integer *b) /* p = a**b */
-#endif
-{
-doublecomplex p1, a1;
-
-a1.r = a->r;
-a1.i = a->i;
-
-pow_zi(&p1, &a1, b);
-
-p->r = p1.r;
-p->i = p1.i;
-}