mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
* stdlib/strtold.c (STRTOF): Set to strtold, not __strtold.
(strtold): Remove weak alias. * stdlib/strtof.c (STRTOF): Set to strtof, not __strtof. (strtof): Remove weak alias.
This commit is contained in:
parent
f0bf9cb92c
commit
c45e5aa9a4
@ -15,6 +15,10 @@ Thu Mar 16 00:04:41 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
|||||||
* stdlib/stdlib.h (__strtof, __strtold): Declarations removed.
|
* stdlib/stdlib.h (__strtof, __strtold): Declarations removed.
|
||||||
(__strto{f,d,ld,l,ul,q,uq}_internal): Declare these functions.
|
(__strto{f,d,ld,l,ul,q,uq}_internal): Declare these functions.
|
||||||
[__OPTIMIZE__]: Define inline functions calling those.
|
[__OPTIMIZE__]: Define inline functions calling those.
|
||||||
|
* stdlib/strtold.c (STRTOF): Set to strtold, not __strtold.
|
||||||
|
(strtold): Remove weak alias.
|
||||||
|
* stdlib/strtof.c (STRTOF): Set to strtof, not __strtof.
|
||||||
|
(strtof): Remove weak alias.
|
||||||
* stdlib/grouping.h: New file, written by drepper.
|
* stdlib/grouping.h: New file, written by drepper.
|
||||||
* stdlib/Makefile (distribute): Add grouping.h.
|
* stdlib/Makefile (distribute): Add grouping.h.
|
||||||
* stdio/vfscanf.c: Grok %' modifier to numeric conversions. Call
|
* stdio/vfscanf.c: Grok %' modifier to numeric conversions. Call
|
||||||
|
@ -3,11 +3,9 @@
|
|||||||
|
|
||||||
#define FLOAT float
|
#define FLOAT float
|
||||||
#define FLT FLT
|
#define FLT FLT
|
||||||
#define STRTOF __strtof
|
#define STRTOF strtof
|
||||||
#define MPN2FLOAT __mpn_construct_float
|
#define MPN2FLOAT __mpn_construct_float
|
||||||
#define FLOAT_HUGE_VAL HUGE_VALf
|
#define FLOAT_HUGE_VAL HUGE_VALf
|
||||||
#define IMPLICIT_ONE 1
|
#define IMPLICIT_ONE 1
|
||||||
|
|
||||||
#include "strtod.c"
|
#include "strtod.c"
|
||||||
|
|
||||||
weak_alias (__strtof, strtof)
|
|
||||||
|
@ -3,11 +3,9 @@
|
|||||||
|
|
||||||
#define FLOAT long double
|
#define FLOAT long double
|
||||||
#define FLT LDBL
|
#define FLT LDBL
|
||||||
#define STRTOF __strtold
|
#define STRTOF strtold
|
||||||
#define MPN2FLOAT __mpn_construct_long_double
|
#define MPN2FLOAT __mpn_construct_long_double
|
||||||
#define FLOAT_HUGE_VAL HUGE_VALl
|
#define FLOAT_HUGE_VAL HUGE_VALl
|
||||||
#define IMPLICIT_ONE 0 /* XXX for i387 extended format */
|
#define IMPLICIT_ONE 0 /* XXX for i387 extended format */
|
||||||
|
|
||||||
#include "strtod.c"
|
#include "strtod.c"
|
||||||
|
|
||||||
weak_alias (__strtold, strtold)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user