diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-10-27 00:23:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-10-27 00:23:28 +0000 |
commit | ca6c73895da003ccea1b7e8ef2b32c98746812aa (patch) | |
tree | 4f888d36af9a7988c8f128bf94093bdd15c496f8 /elf | |
parent | d3640b91f7416080e4f16c93f7a59d6849ac6dc9 (diff) | |
download | glibc-ca6c73895da003ccea1b7e8ef2b32c98746812aa.tar.gz |
Update.
2001-10-26 Ulrich Drepper <drepper@redhat.com>
* string/strxfrm.c [USE_IN_EXTENDED_LOCALE_MODEL]: Correctly get
nrules value.
2001-10-24 H.J. Lu <hjl@gnu.org>
* sysdeps/generic/bits/dlfcn.h (DL_CALL_FCT): Cast to void *.
Use __BEGIN_DECLS/__END_DECLS around prototypes.
* sysdeps/mips/bits/dlfcn.h (DL_CALL_FCT): Likewise.
2001-10-21 Jim Meyering <meyering@lucent.com>
* malloc/obstack.c (_): Honor the setting of ENABLE_NLS. Otherwise,
this code would end up calling gettext even in packages built
with --disable-nls.
* posix/getopt.c (_): Likewise.
* posix/regex.c (_): Likewise.
2001-10-26 Ulrich Drepper <drepper@redhat.com>
* resolv/gethnamaddr.c (gethostbyaddr): Use ip6.addr for reverse
lookup not ip6.int.
* resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
Reported by Martin.v.Loewis@t-online.de [PR libc/2598].
2001-10-19 Jakub Jelinek <jakub@redhat.com>
* misc/sys/cdefs.h (__attribute_used__): Define.
* elf/rtld.c (_dl_start): Add __attribute_used__.
* elf/dl-runtime.c (fixup, profile_fixup): Likewise.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-runtime.c | 4 | ||||
-rw-r--r-- | elf/rtld.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index 7a77f46b93..d9c99c4785 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -42,7 +42,7 @@ function. */ #ifndef ELF_MACHINE_NO_PLT -static ElfW(Addr) __attribute__ ((unused)) +static ElfW(Addr) __attribute_used__ fixup ( # ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS ELF_MACHINE_RUNTIME_FIXUP_ARGS, @@ -126,7 +126,7 @@ fixup ( #if !defined PROF && !defined ELF_MACHINE_NO_PLT && !__BOUNDED_POINTERS__ -static ElfW(Addr) __attribute__ ((unused)) +static ElfW(Addr) __attribute_used__ profile_fixup ( #ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS ELF_MACHINE_RUNTIME_FIXUP_ARGS, diff --git a/elf/rtld.c b/elf/rtld.c index cf7f7efca9..47ac3e3cb6 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -145,7 +145,7 @@ RTLD_START # error "sysdeps/MACHINE/dl-machine.h fails to define RTLD_START" #endif -static ElfW(Addr) +static ElfW(Addr) __attribute_used__ _dl_start (void *arg) { struct link_map bootstrap_map; |