V7/usr/src/libF77/h_nint.c

Find at most related files.
including files from this version of Unix.

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