From 9f341620c14e959d333fb26d8ec5e9f9dc5209d6 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 27 Jan 2006 21:16:02 +0000 Subject: use attribute_unused instead of hardcoded --- ldso/include/dl-string.h | 2 +- ldso/ldso/i386/dl-sysdep.h | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'ldso') diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h index b3fdb5b20..e2d4d36ed 100644 --- a/ldso/include/dl-string.h +++ b/ldso/include/dl-string.h @@ -8,7 +8,7 @@ #ifndef _LINUX_STRING_H_ #define _LINUX_STRING_H_ -#include // for do_rem +#include /* for do_rem */ #include static size_t _dl_strlen(const char * str); diff --git a/ldso/ldso/i386/dl-sysdep.h b/ldso/ldso/i386/dl-sysdep.h index a1613bea4..2ef94c95f 100644 --- a/ldso/ldso/i386/dl-sysdep.h +++ b/ldso/ldso/i386/dl-sysdep.h @@ -44,7 +44,8 @@ extern unsigned long _dl_linux_resolver(struct elf_resolve * tpnt, int reloc_ent /* Return the link-time address of _DYNAMIC. Conveniently, this is the first element of the GOT. This must be inlined in a function which uses global data. */ -static inline Elf32_Addr __attribute__ ((unused)) +static inline Elf32_Addr elf_machine_dynamic (void) attribute_unused; +static inline Elf32_Addr elf_machine_dynamic (void) { register Elf32_Addr *got __asm__ ("%ebx"); @@ -53,7 +54,8 @@ elf_machine_dynamic (void) /* Return the run-time load address of the shared object. */ -static inline Elf32_Addr __attribute__ ((unused)) +static inline Elf32_Addr elf_machine_load_address (void) attribute_unused; +static inline Elf32_Addr elf_machine_load_address (void) { /* It doesn't matter what variable this is, the reference never makes -- cgit v1.2.3