dgd/
dgd/mud/doc/kernel/
dgd/mud/doc/kernel/hook/
dgd/mud/doc/kernel/lfun/
dgd/mud/include/
dgd/mud/include/kernel/
dgd/mud/kernel/lib/
dgd/mud/kernel/lib/api/
dgd/mud/kernel/obj/
dgd/mud/kernel/sys/
dgd/src/host/beos/
dgd/src/host/pc/res/
dgd/src/host/unix/
dgd/src/lpc/
dgd/src/parser/
NAME
	fmod - floating point modulus

SYNOPSIS
	float fmod(float x, float y)


DESCRIPTION
	Return the value f, for which there exists an integer k such that
	k * y + f == x, f has the same sign of x, and the absolute value of
	f is less than the absolute value of y.

ERRORS
	A domain error will result if y == 0.0.

SEE ALSO
	kfun/ceil, kfun/floor