date and time created 83/01/21 11:19:18 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_nint.c
CommitLineData
c2a6b676
DW
1/*
2 * "@(#)d_nint.c 1.1"
3 */
4
5double d_nint(x)
6double *x;
7{
8double floor();
9
10return( (*x)>=0 ?
11 floor(*x + .5) : -floor(.5 - *x) );
12}