summaryrefslogtreecommitdiff
path: root/stdlib/strtof.c
blob: 1d1c41f46a29aac5a007ecf4658bb1e5a245ff35 (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 `float' version, `strtof'.  */

#define	FLOAT		float
#define	FLT		FLT
#define	STRTOF		strtof
#define	MPN2FLOAT	__mpn_construct_float
#define	FLOAT_HUGE_VAL	HUGE_VALf

#include "strtod.c"