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
	modf - compute floating point remainder

SYNOPSIS
	float *modf(float x)


DESCRIPTION
	Split the argument into a fraction f and an integer part n, such that
	| f | < 1.0, and f + n == x.  ({ f, n }) is returned.  Note that
	n is returned as a float, and may not be representable in type int.

SEE ALSO
	kfun/frexp, kfun/ldexp