diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 16:09:20 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 16:09:38 -0700 |
commit | a0aef7830eb0698f72129b647be8c00cdf0c7938 (patch) | |
tree | f649980f9d20665da5916e17915bd31414a24471 /include | |
parent | 3ee8209be761210dc6a8f121fd79231e7f364a9b (diff) | |
download | glibc-a0aef7830eb0698f72129b647be8c00cdf0c7938.zip glibc-a0aef7830eb0698f72129b647be8c00cdf0c7938.tar.gz glibc-a0aef7830eb0698f72129b647be8c00cdf0c7938.tar.bz2 |
Move hidden_proto (__dl_iterate_phdr) to include/link.h [BZ #18822]
__dl_iterate_phdr is hidden and should be accessed directly within
libc.so and libc.a without using GOT nor PLT.
[BZ #18822]
* elf/dl-iteratephdr.c (hidden_proto (__dl_iterate_phdr)): Moved
to ...
* include/link.h (hidden_proto (__dl_iterate_phdr)): Here.
Diffstat (limited to 'include')
-rw-r--r-- | include/link.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/link.h b/include/link.h index eeb5f4d..3e1b2ae 100644 --- a/include/link.h +++ b/include/link.h @@ -341,6 +341,7 @@ struct link_map extern int __dl_iterate_phdr (int (*callback) (struct dl_phdr_info *info, size_t size, void *data), void *data); +hidden_proto (__dl_iterate_phdr) /* 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 |