1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* stdlib/strtod.c: Likewise.

This commit is contained in:
Roland McGrath
1996-07-08 10:21:07 +00:00
parent af5b3bc33b
commit 7702f9b5a9
2 changed files with 4 additions and 3 deletions

View File

@ -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 * elf/dl-minimal.c: Use weak_function as keyword in function defns
instead of weak_symbol (NAME) after the defn. instead of weak_symbol (NAME) after the defn.
* stdlib/strtol.c: Likewise. * stdlib/strtol.c: Likewise.
* stdlib/strtod.c: Likewise.
* sysdeps/mach/hurd/dl-sysdep.c: Likewise. * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
* sysdeps/alpha/dl-machine.h (elf_machine_rela) [RTLD_BOOTSTRAP]: * sysdeps/alpha/dl-machine.h (elf_machine_rela) [RTLD_BOOTSTRAP]:

View File

@ -1167,12 +1167,12 @@ INTERNAL (STRTOF) (nptr, endptr, group)
/* External user entry point. */ /* External user entry point. */
FLOAT FLOAT
#ifdef weak_function
weak_function
#endif
STRTOF (nptr, endptr) STRTOF (nptr, endptr)
const STRING_TYPE *nptr; const STRING_TYPE *nptr;
STRING_TYPE **endptr; STRING_TYPE **endptr;
{ {
return INTERNAL (STRTOF) (nptr, endptr, 0); return INTERNAL (STRTOF) (nptr, endptr, 0);
} }
#define weak_this(x) weak_symbol(x)
weak_this (STRTOF)