summaryrefslogtreecommitdiff
path: root/stdlib/strtold.c
blob: ec2b49b2794326dbcdeb3f70df372c7dd3d2e244 (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"