date and time created 83/01/21 11:10:41 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_mod.c
CommitLineData
af5f4c3d
DW
1/*
2 * "@(#)d_mod.c 1.1"
3 */
4
5double d_mod(x,y)
6double *x, *y;
7{
8double floor(), quotient = *x / *y;
9if (quotient >= 0.0)
10 quotient = floor(quotient);
11else
12 quotient = -floor(-quotient);
13return(*x - (*y) * quotient );
14}