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 | 0c1c3a771eceec46e66ce1183cf988e2303bd373 (patch) | |
tree | addf888256dd2498bcc2f220339b981e7e096d87 /include | |
parent | add8d7ea01d5a22c2d7d184240dda6a7767e54e8 (diff) | |
download | glibc-0c1c3a771eceec46e66ce1183cf988e2303bd373.tar.gz glibc-0c1c3a771eceec46e66ce1183cf988e2303bd373.tar.xz glibc-0c1c3a771eceec46e66ce1183cf988e2303bd373.zip |
dlfcn: Move dlopen 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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h index 04ea4f6e2d..4274eddbc9 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -132,8 +132,7 @@ libc_hidden_proto (_dlfcn_hook) libraries. Internal calls in glibc should use the __libc_dl* functions defined in elf/dl-libc.c instead. */ -extern void *__dlopen (const char *file, int mode DL_CALLER_DECL) - attribute_hidden; +extern void *__dlopen (const char *file, int mode, void *caller); extern void *__dlmopen (Lmid_t nsid, const char *file, int mode, void *dl_caller); extern int __dlclose (void *handle); |