glibc/stdlib/strtold.c

11 lines
321 B
C
Raw Normal View History

1995-02-18 02:27:10 +01:00
/* The actual implementation for all floating point sizes is in strtod.c.
These macros tell it to produce the `long double' version, `strtold'. */
#define FLOAT long double
#define FLT LDBL
#define STRTOF strtold
1995-02-18 02:27:10 +01:00
#define MPN2FLOAT __mpn_construct_long_double
#define FLOAT_HUGE_VAL HUGE_VALl
#include "strtod.c"