diff options
Diffstat (limited to 'lib/libF77/h_nint.c')
-rw-r--r-- | lib/libF77/h_nint.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/libF77/h_nint.c b/lib/libF77/h_nint.c new file mode 100644 index 0000000..bf63df1 --- /dev/null +++ b/lib/libF77/h_nint.c @@ -0,0 +1,14 @@ +#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) ); +} |