From c45e5aa9a48a5dec6a2c62cbd8be3cda8239c285 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 16 Mar 1995 07:21:33 +0000 Subject: * 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/strtof.c | 4 +--- stdlib/strtold.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'stdlib') diff --git a/stdlib/strtof.c b/stdlib/strtof.c index 5f7c217..fbf92e6 100644 --- a/stdlib/strtof.c +++ b/stdlib/strtof.c @@ -3,11 +3,9 @@ #define FLOAT float #define FLT FLT -#define STRTOF __strtof +#define STRTOF strtof #define MPN2FLOAT __mpn_construct_float #define FLOAT_HUGE_VAL HUGE_VALf #define IMPLICIT_ONE 1 #include "strtod.c" - -weak_alias (__strtof, strtof) diff --git a/stdlib/strtold.c b/stdlib/strtold.c index da9bd57..6388cb9 100644 --- a/stdlib/strtold.c +++ b/stdlib/strtold.c @@ -3,11 +3,9 @@ #define FLOAT long double #define FLT LDBL -#define STRTOF __strtold +#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) -- cgit v1.1