summaryrefslogtreecommitdiff
path: root/stdlib/strtold.c
blob: da9bd57f7fb951a35db202db7a743616abea3e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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
#define	IMPLICIT_ONE	0	/* XXX for i387 extended format */

#include "strtod.c"

weak_alias (__strtold, strtold)