]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* stdlib/strtold.c (STRTOF): Set to strtold, not __strtold.
authorRoland McGrath <roland@gnu.org>
Thu, 16 Mar 1995 07:21:33 +0000 (07:21 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 16 Mar 1995 07:21:33 +0000 (07:21 +0000)
(strtold): Remove weak alias.
* stdlib/strtof.c (STRTOF): Set to strtof, not __strtof.
(strtof): Remove weak alias.

ChangeLog
stdlib/strtof.c
stdlib/strtold.c

index cd8096b2f94a688afc78723411ecc0113d2f57bf..9bf5fcc23e1ebd7dcf73cf80aba68cbb73fa2ad5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
        (__strto{f,d,ld,l,ul,q,uq}_internal): Declare these functions.
        [__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/Makefile (distribute): Add grouping.h.
        * stdio/vfscanf.c: Grok %' modifier to numeric conversions.  Call
index 5f7c217e598f0ed9d901e19dabca2ea11a4645ec..fbf92e671a5fd9c5736a24246a268a33cd290e99 100644 (file)
@@ -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)
index da9bd57f7fb951a35db202db7a743616abea3e81..6388cb904da72b4509b5988fd69458a1a13fceac 100644 (file)
@@ -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)