NAME
	allocate - allocate an array

SYNOPSIS
	mixed *allocate(int size)


DESCRIPTION
	Allocate an array with size elements.  All elements are initialized
	to zero.  The new array is returned.

ERRORS
	If the specified array size is smaller than zero or larger than the
	constant MAX_ARRAY_SIZE, defined in the include file <limits.h>, an
	error will result.

SEE ALSO
	kfun/sizeof
