diff options
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/dl-machine.h | 2 | ||||
-rw-r--r-- | sysdeps/i386/dl-procinfo.c | 6 | ||||
-rw-r--r-- | sysdeps/i386/i686/strtok_r.S | 1 | ||||
-rw-r--r-- | sysdeps/i386/strtok_r.S | 1 |
4 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index 65ae53a..4b5b8f2 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -389,6 +389,7 @@ elf_machine_plt_value (struct link_map *map, const Elf32_Rel *reloc, MAP is the object containing the reloc. */ static inline void +__attribute ((always_inline)) elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc, const Elf32_Sym *sym, const struct r_found_version *version, void *const reloc_addr_arg) @@ -639,6 +640,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc, #endif /* !RTLD_BOOTSTRAP */ static inline void +__attribute ((always_inline)) elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc, void *const reloc_addr_arg) { diff --git a/sysdeps/i386/dl-procinfo.c b/sysdeps/i386/dl-procinfo.c index 01b24d1..2108f22 100644 --- a/sysdeps/i386/dl-procinfo.c +++ b/sysdeps/i386/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for i386 version of processor capability information. - Copyright (C) 2001,2002,2003 Free Software Foundation, Inc. + Copyright (C) 2001,2002,2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2001. @@ -24,7 +24,7 @@ If anything should be added here check whether the size of each string is still ok with the given array size. - All the #ifdefs in the definitions ar equite irritating but + All the #ifdefs in the definitions are quite irritating but necessary if we want to avoid duplicating the information. There are three different modes: @@ -41,7 +41,7 @@ */ #ifndef PROCINFO_CLASS -#define PROCINFO_CLASS +# define PROCINFO_CLASS #endif #if !defined PROCINFO_DECL && defined SHARED diff --git a/sysdeps/i386/i686/strtok_r.S b/sysdeps/i386/i686/strtok_r.S index cbaeabb..1c24ca8 100644 --- a/sysdeps/i386/i686/strtok_r.S +++ b/sysdeps/i386/i686/strtok_r.S @@ -2,3 +2,4 @@ #define USE_AS_STRTOK_R 1 #include <sysdeps/i386/i686/strtok.S> weak_alias (BP_SYM (__strtok_r), BP_SYM (strtok_r)) +strong_alias (BP_SYM (__strtok_r), BP_SYM (__GI___strtok_r)) diff --git a/sysdeps/i386/strtok_r.S b/sysdeps/i386/strtok_r.S index 621093a..f4a6a2c 100644 --- a/sysdeps/i386/strtok_r.S +++ b/sysdeps/i386/strtok_r.S @@ -2,3 +2,4 @@ #define USE_AS_STRTOK_R 1 #include <sysdeps/i386/strtok.S> weak_alias (BP_SYM (__strtok_r), BP_SYM (strtok_r)) +strong_alias (BP_SYM (__strtok_r), BP_SYM (__GI___strtok_r)) |