Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - kcc-4/lib/math/fmod.c
There are 7 other files named fmod.c in the archive. Click here to see a list.
/*
 *	FMOD.C - floating-point modulus for math library
 *
 *	This code conforms with the description of the frexp function
 *	as defined in Harbison and Steele's "C: A Reference Manual",
 *	section 11.3.12
 */

double fmod(x, y)
double x, y;
{
	extern double modf();
	int i;

	modf((x / y), &i);	/* integer part in i, forget remainder */
	return x - (i * y);
}