diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
commit | 6dfc0207ebeb639e47ba7387a9123ed622904cf7 (patch) | |
tree | 2206f40e0eaf0c3386bc31334668857f6c39967d /include | |
parent | 492560a32e14c9a985274e1995b67a577197261e (diff) | |
download | glibc-6dfc0207ebeb639e47ba7387a9123ed622904cf7.tar.gz |
dlfcn: Move dlinfo into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/dlfcn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h index dc5193acbb..e898c17792 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -143,7 +143,7 @@ extern void *__dlvsym (void *handle, const char *name, const char *version extern int __dladdr (const void *address, Dl_info *info); extern int __dladdr1 (const void *address, Dl_info *info, void **extra_info, int flags); -extern int __dlinfo (void *handle, int request, void *arg) attribute_hidden; +extern int __dlinfo (void *handle, int request, void *arg); #ifndef SHARED struct link_map; |