mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
c45e5aa9a4
(strtold): Remove weak alias. * stdlib/strtof.c (STRTOF): Set to strtof, not __strtof. (strtof): Remove weak alias.
12 lines
323 B
C
12 lines
323 B
C
/* 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
|
|
#define IMPLICIT_ONE 1
|
|
|
|
#include "strtod.c"
|