home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libF77 / h_nint.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  90 b   |  7 lines

  1. short h_nint(x)
  2. float *x;
  3. {
  4. return( (*x)>=0 ?
  5.     (short) (*x + .5) : (short) (*x - .5) );
  6. }
  7.