summaryrefslogtreecommitdiff
path: root/stdlib/strtold.c
blob: 9d8054337721243ded64c06e75abd69feb0ae9bc (plain)
1
2
3
4
5
6
7
8
9
10
/* 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
#define	MPN2FLOAT	__mpn_construct_long_double
#define	FLOAT_HUGE_VAL	HUGE_VALL

#include "strtod.c"