blob: 3c1b28ea4c7cb080b912c33e1ab9c928f08ae0fa [file] [log] [blame]
#include "f2c.h"
#undef abs
#include <math.h>
double
r_int (real * x)
{
return ((*x > 0) ? floor (*x) : -floor (-*x));
}