INFNAN(3) Linux Programmer's Manual INFNAN(3)

infnan - deal with infinite or not-a-number (NaN) result

#include <math.h>

double infnan(int error);

Link with -lm.

The infnan() function returns a suitable value for infinity and "not-a-number" (NaN) results. The value of error can be ERANGE to represent infinity or anything else to represent NaN. errno is also set.

This obsolete function was provided in libc4 and libc5, but is not available in glibc2.

If error is ERANGE (Infinity), HUGE_VAL is returned.

If error is -ERANGE (-Infinity), -HUGE_VAL is returned.

If error is anything else, NAN is returned.

The value of error is "not-a-number" (NaN).
The value of error is positive or negative infinity.

4.3BSD

1993-06-02 GNU

Different Versions of this Page: