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 | add8d7ea01d5a22c2d7d184240dda6a7767e54e8 (patch) | |
tree | 22056615da5940658eeb0db5d45bcc370578ebcd /include | |
parent | 6dfc0207ebeb639e47ba7387a9123ed622904cf7 (diff) | |
download | glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.tar.gz glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.tar.xz glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.zip |
dlfcn: Move dlvsym 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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h index e898c17792..04ea4f6e2d 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -92,6 +92,7 @@ libc_hidden_proto (_dl_sym) NULL. */ extern void *_dl_vsym (void *handle, const char *name, const char *version, void *who); +libc_hidden_proto (_dl_vsym) /* Helper function for <dlfcn.h> functions. Runs the OPERATE function via _dl_catch_error. Returns zero for success, nonzero for failure; and @@ -137,9 +138,8 @@ extern void *__dlmopen (Lmid_t nsid, const char *file, int mode, void *dl_caller); extern int __dlclose (void *handle); extern void *__dlsym (void *handle, const char *name, void *dl_caller); -extern void *__dlvsym (void *handle, const char *name, const char *version - DL_CALLER_DECL) - attribute_hidden; +extern void *__dlvsym (void *handle, const char *name, const char *version, + void *dl_caller); extern int __dladdr (const void *address, Dl_info *info); extern int __dladdr1 (const void *address, Dl_info *info, void **extra_info, int flags); |