aboutsummaryrefslogtreecommitdiff
path: root/include/dlfcn.h
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-06-03 08:26:04 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-06-03 08:26:04 +0200
commitadd8d7ea01d5a22c2d7d184240dda6a7767e54e8 (patch)
tree22056615da5940658eeb0db5d45bcc370578ebcd /include/dlfcn.h
parent6dfc0207ebeb639e47ba7387a9123ed622904cf7 (diff)
downloadglibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.zip
glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.tar.gz
glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.tar.bz2
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/dlfcn.h')
-rw-r--r--include/dlfcn.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index e898c17..04ea4f6 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);