ack/lang/fortran/lib/libF77/r_int.c
1991-10-07 16:59:33 +00:00

10 lines
109 B
C

#include "f2c.h"
double r_int(x)
real *x;
{
double floor();
return( (*x>0) ? floor(*x) : -floor(- *x) );
}