1998-02-01 02:37:08 +01:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#ifdef KR_headers
|
|
|
|
double floor();
|
|
|
|
integer i_dnnt(x) doublereal *x;
|
|
|
|
#else
|
|
|
|
#undef abs
|
|
|
|
#include <math.h>
|
|
|
|
integer i_dnnt(doublereal *x)
|
|
|
|
#endif
|
|
|
|
{
|
1998-05-19 12:52:03 +02:00
|
|
|
return (integer)(*x >= 0. ? floor(*x + .5) : -floor(.5 - *x));
|
1998-02-01 02:37:08 +01:00
|
|
|
}
|