date and time created 83/01/21 11:15:23 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_mod.c
/*
* "@(#)d_mod.c 1.1"
*/
double d_mod(x,y)
double *x, *y;
{
double floor(), quotient = *x / *y;
if (quotient >= 0.0)
quotient = floor(quotient);
else
quotient = -floor(-quotient);
return(*x - (*y) * quotient );
}