NAME
	pow - compute power

SYNOPSIS
	float pow(float x, float y)


DESCRIPTION
	Return x to the power y.

ERRORS
	An error will result if 0.0 is taken to a negative power, if a negative
	number is taken to a non-integer power, or if the result is too large.

SEE ALSO
	kfun/exp, kfun/log, kfun/log10
