2 * infinity () returns the representation of infinity.
3 * Added by Cygnus Support.
8 <<infinity>>, <<infinityf>>---representation of infinity
17 double infinity(void);
18 float infinityf(void);
21 <<infinity>> and <<infinityf>> return the special number IEEE
22 infinity in double- and single-precision arithmetic
26 <<infinity>> and <<infinityf>> are neither standard C nor POSIX. C and
27 POSIX require macros HUGE_VAL and HUGE_VALF to be defined in math.h, which
28 Newlib defines to be infinities corresponding to these archaic infinity()
29 and infinityf() functions in floating-point implementations which do have
39 #ifndef _DOUBLE_IS_32BITS
45 INSERT_WORDS(x
,0x7ff00000,0);
49 #endif /* _DOUBLE_IS_32BITS */