1998-01-31 18:37:08 -07:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#ifdef KR_headers
|
|
|
|
double floor();
|
|
|
|
shortint h_dnnt(x) doublereal *x;
|
|
|
|
#else
|
|
|
|
#undef abs
|
|
|
|
#include <math.h>
|
|
|
|
shortint h_dnnt(doublereal *x)
|
|
|
|
#endif
|
|
|
|
{
|
1998-05-19 06:52:03 -04:00
|
|
|
return (shortint)(*x >= 0. ? floor(*x + .5) : -floor(.5 - *x));
|
1998-01-31 18:37:08 -07:00
|
|
|
}
|