diff options
Diffstat (limited to 'libf2c/libF77/r_nint.c')
-rw-r--r-- | libf2c/libF77/r_nint.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libf2c/libF77/r_nint.c b/libf2c/libF77/r_nint.c index f5382af..79700c8 100644 --- a/libf2c/libF77/r_nint.c +++ b/libf2c/libF77/r_nint.c @@ -1,13 +1,8 @@ #include "f2c.h" -#ifdef KR_headers -double floor(); -double r_nint(x) real *x; -#else #undef abs #include <math.h> double r_nint(real *x) -#endif { return( (*x)>=0 ? floor(*x + .5) : -floor(.5 - *x) ); |