opnsense-src/contrib/libf2c/libF77/d_int.c

10 lines
130 B
C
Raw Normal View History

1999-09-18 06:51:31 -04:00
#include "f2c.h"
#undef abs
#include <math.h>
2003-07-10 23:42:19 -04:00
double
d_int (doublereal * x)
1999-09-18 06:51:31 -04:00
{
2003-07-10 23:42:19 -04:00
return ((*x > 0) ? floor (*x) : -floor (-*x));
1999-09-18 06:51:31 -04:00
}