]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - contrib/libf2c/libF77/h_nint.c
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.git] / contrib / libf2c / libF77 / h_nint.c
1 #include "f2c.h"
2
3 #undef abs
4 #include <math.h>
5 shortint
6 h_nint (real * x)
7 {
8   return (shortint) (*x >= 0 ? floor (*x + .5) : -floor (.5 - *x));
9 }