]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/libf2c/libF77/i_nint.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / libf2c / libF77 / i_nint.c
1 #include "f2c.h"
2
3 #undef abs
4 #include <math.h>
5 integer
6 i_nint (real * x)
7 {
8   return (integer) (*x >= 0 ? floor (*x + .5) : -floor (.5 - *x));
9 }