10 lines
109 B
C
10 lines
109 B
C
#include "f2c.h"
|
|
|
|
double r_int(x)
|
|
real *x;
|
|
{
|
|
double floor();
|
|
|
|
return( (*x>0) ? floor(*x) : -floor(- *x) );
|
|
}
|