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 /dlfcn/Versions | |
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 'dlfcn/Versions')
-rw-r--r-- | dlfcn/Versions | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dlfcn/Versions b/dlfcn/Versions index ca9a3e5591..3c4fa2742e 100644 --- a/dlfcn/Versions +++ b/dlfcn/Versions @@ -5,6 +5,9 @@ libc { dlerror; dlsym; } + GLIBC_2.1 { + dlvsym; + } GLIBC_2.3.3 { dladdr1; dlinfo; @@ -20,6 +23,7 @@ libc { dlinfo; dlmopen; dlsym; + dlvsym; } GLIBC_PRIVATE { __libc_dlerror_result; @@ -32,7 +36,7 @@ libdl { dlopen; } GLIBC_2.1 { - dlopen; dlvsym; + dlopen; } GLIBC_2.3.3 { __libdl_version_placeholder; |