V7/usr/src/libF77/d_nint.c

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

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