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