initial import
[glibc.git] / stdlib / strtof.c
blobbf1349b108d8b997b7b21f28a71253b30a81b51b
1 /* The actual implementation for all floating point sizes is in strtod.c.
2 These macros tell it to produce the `float' version, `strtof'. */
4 #define FLOAT float
5 #define FLT FLT
6 #define STRTOF __strtof
7 #define MPN2FLOAT __mpn_construct_float
8 #define FLOAT_HUGE_VAL HUGE_VALf
10 #include "strtod.c"
12 weak_alias (__strtof, strtof)