SYNOPSIS
	float floor (float arg)

DESCRIPTION
        Round the <arg>ument downwards the nearest whole number, returning
        that value.

EXAMPLES
        floor(4.5)  - return 4
        floor(-4.5) - return -5

HISTORY
	Introduced in LDMud 3.2.7.

SEE ALSO
        abs(E), ceil(E)
