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 | 602252b553031d49c70467bfebcb1ba3bd264501 (patch) | |
tree | 1a1b1071ffcb164387c706c2b39544d4439b0956 /include/dlfcn.h | |
parent | d8cce17d2a8f572f26ed483246a505f45579ea0e (diff) | |
download | glibc-602252b553031d49c70467bfebcb1ba3bd264501.tar glibc-602252b553031d49c70467bfebcb1ba3bd264501.tar.gz glibc-602252b553031d49c70467bfebcb1ba3bd264501.tar.bz2 glibc-602252b553031d49c70467bfebcb1ba3bd264501.zip |
dlfcn: Move dladdr 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/dlfcn.h')
-rw-r--r-- | include/dlfcn.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h index 352eb79500..a018144808 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -140,8 +140,7 @@ extern void *__dlsym (void *handle, const char *name DL_CALLER_DECL) extern void *__dlvsym (void *handle, const char *name, const char *version DL_CALLER_DECL) attribute_hidden; -extern int __dladdr (const void *address, Dl_info *info) - attribute_hidden; +extern int __dladdr (const void *address, Dl_info *info); extern int __dladdr1 (const void *address, Dl_info *info, void **extra_info, int flags) attribute_hidden; |