1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-01 05:02:03 +03:00

Replace Elf64_XXX with ElfW(XXX) in dl-irel.h

This commit is contained in:
H.J. Lu
2012-03-22 10:17:05 -07:00
parent 1da7940c77
commit 81b035fe63
3 changed files with 18 additions and 7 deletions

View File

@@ -330,4 +330,9 @@ extern int __dl_iterate_phdr (int (*callback) (struct dl_phdr_info *info,
size_t size, void *data),
void *data);
/* We use this macro to refer to ELF macros independent of the native
wordsize. `ELFW(R_TYPE)' is used in place of `ELF32_R_TYPE' or
`ELF64_R_TYPE'. */
#define ELFW(type) _ElfW (ELF, __ELF_NATIVE_CLASS, type)
#endif /* include/link.h */