]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* stdlib/strtod.c: Likewise.
authorRoland McGrath <roland@gnu.org>
Mon, 8 Jul 1996 10:21:07 +0000 (10:21 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 8 Jul 1996 10:21:07 +0000 (10:21 +0000)
ChangeLog
stdlib/strtod.c

index b64c8e36682bc48cc04280777c05c230e75ad8eb..6cfbd1bcadbd49f97008b0e153e71393f97b8da0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,7 @@ Mon Jul  8 00:11:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
        * elf/dl-minimal.c: Use weak_function as keyword in function defns
        instead of weak_symbol (NAME) after the defn.
        * stdlib/strtol.c: Likewise.
+       * stdlib/strtod.c: Likewise.
        * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
 
        * sysdeps/alpha/dl-machine.h (elf_machine_rela) [RTLD_BOOTSTRAP]:
index 898542649c347e81c9b9e475474f027bc1d6fba4..6f3ea26c0fa28ca29ff28e877a0aa570286b7f79 100644 (file)
@@ -1167,12 +1167,12 @@ INTERNAL (STRTOF) (nptr, endptr, group)
 /* External user entry point.  */
 
 FLOAT
+#ifdef weak_function
+weak_function
+#endif
 STRTOF (nptr, endptr)
      const STRING_TYPE *nptr;
      STRING_TYPE **endptr;
 {
   return INTERNAL (STRTOF) (nptr, endptr, 0);
 }
-
-#define weak_this(x) weak_symbol(x)
-weak_this (STRTOF)