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