1 /* The actual implementation for all floating point sizes is in strtod.c.
2 These macros tell it to produce the `float' version, `strtof'. */
6 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
7 # define STRTOF __strtof_l
11 #define MPN2FLOAT __mpn_construct_float
12 #define FLOAT_HUGE_VAL HUGE_VALF
13 #define SET_MANTISSA(flt, mant) \
14 do { union ieee754_float u; \
16 if ((mant & 0x7fffff) == 0) \
18 u.ieee.mantissa = (mant) & 0x7fffff; \