(ptrace) [PTRACE_TRACEME]: Notify the proc server that we are now traced.
[glibc.git] / stdlib / strtold.c
blobec2b49b2794326dbcdeb3f70df372c7dd3d2e244
1 /* The actual implementation for all floating point sizes is in strtod.c.
2 These macros tell it to produce the `long double' version, `strtold'. */
4 #define FLOAT long double
5 #define FLT LDBL
6 #define STRTOF strtold
7 #define MPN2FLOAT __mpn_construct_long_double
8 #define FLOAT_HUGE_VAL HUGE_VALl
10 #include "strtod.c"