2 * nanf () returns a nan.
3 * Added by Cygnus Support.
8 float nanf(const char *unused
)
12 #if __GNUC_PREREQ (3, 3)
13 x
= __builtin_nanf("");
15 SET_FLOAT_WORD(x
,0x7fc00000);
20 #ifdef _DOUBLE_IS_32BITS
22 double nan(const char *arg
)
24 return (double) nanf(arg
);
27 #endif /* defined(_DOUBLE_IS_32BITS) */