diff options
Diffstat (limited to 'gnu/usr.bin/gcc/f/runtime/libF77/h_nint.c')
-rw-r--r-- | gnu/usr.bin/gcc/f/runtime/libF77/h_nint.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/usr.bin/gcc/f/runtime/libF77/h_nint.c b/gnu/usr.bin/gcc/f/runtime/libF77/h_nint.c deleted file mode 100644 index 0af3735da42..00000000000 --- a/gnu/usr.bin/gcc/f/runtime/libF77/h_nint.c +++ /dev/null @@ -1,14 +0,0 @@ -#include "f2c.h" - -#ifdef KR_headers -double floor(); -shortint h_nint(x) real *x; -#else -#undef abs -#include <math.h> -shortint h_nint(real *x) -#endif -{ -return( (*x)>=0 ? - floor(*x + .5) : -floor(.5 - *x) ); -} |