gcc/libf2c/libF77/h_dnnt.c
Kaveh R. Ghazi 407c72cb29 *: Fix formatting.
* libF77/*: Fix formatting.
	* libI77/*: Likewise.
	* libU77/*: Likewise.

From-SVN: r54145
2002-06-01 12:38:32 +00:00

10 lines
153 B
C

#include "f2c.h"
#undef abs
#include <math.h>
shortint
h_dnnt (doublereal * x)
{
return (shortint) (*x >= 0. ? floor (*x + .5) : -floor (.5 - *x));
}