V7/usr/src/libF77/h_nint.c

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

short h_nint(x)
float *x;
{
return( (*x)>=0 ?
	(short) (*x + .5) : (short) (*x - .5) );
}