diff options
Diffstat (limited to 'gnu/lib/libf2c/libF77/h_nint.c')
-rw-r--r-- | gnu/lib/libf2c/libF77/h_nint.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gnu/lib/libf2c/libF77/h_nint.c b/gnu/lib/libf2c/libF77/h_nint.c deleted file mode 100644 index a8c366a41be..00000000000 --- a/gnu/lib/libf2c/libF77/h_nint.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "f2c.h" - -#undef abs -#include <math.h> -shortint -h_nint (real * x) -{ - return (shortint) (*x >= 0 ? floor (*x + .5) : -floor (.5 - *x)); -} |