aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/d_acos.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/f/runtime/libF77/d_acos.c')
-rw-r--r--gcc/f/runtime/libF77/d_acos.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/f/runtime/libF77/d_acos.c b/gcc/f/runtime/libF77/d_acos.c
deleted file mode 100644
index 33da5369db2..00000000000
--- a/gcc/f/runtime/libF77/d_acos.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "f2c.h"
-
-#ifdef KR_headers
-double acos();
-double d_acos(x) doublereal *x;
-#else
-#undef abs
-#include <math.h>
-double d_acos(doublereal *x)
-#endif
-{
-return( acos(*x) );
-}