V7M/src/libF77/r_nint.c

Compare this file to the similar file:
Show the results in this format:

double r_nint(x)
float *x;
{
return( (*x)>=0 ?
	(long int) (*x + .5) : (long int) (*x - .5) );
}