1994-10-26 18:17:41 +00:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#ifdef KR_headers
|
|
|
|
double floor();
|
|
|
|
integer i_nint(x) real *x;
|
|
|
|
#else
|
|
|
|
#undef abs
|
|
|
|
#include "math.h"
|
|
|
|
integer i_nint(real *x)
|
|
|
|
#endif
|
|
|
|
{
|
1999-02-03 17:23:49 +00:00
|
|
|
return (integer)(*x >= 0 ? floor(*x + .5) : -floor(.5 - *x));
|
1994-10-26 18:17:41 +00:00
|
|
|
}
|