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 | 6a1ed32789eaec6e1cd4345552e7342b5b18da5f (patch) | |
tree | cb2adb82af54f07d6d086d8b91c42d6d5fec23ac /dlfcn/Versions | |
parent | 77f876c0e3ac08a98daa60fbad44061d4e4c3d14 (diff) | |
download | glibc-6a1ed32789eaec6e1cd4345552e7342b5b18da5f.tar.gz glibc-6a1ed32789eaec6e1cd4345552e7342b5b18da5f.tar.xz glibc-6a1ed32789eaec6e1cd4345552e7342b5b18da5f.zip |
dlfcn: Move dlmopen 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 7d6b51a4e3..584035e203 100644 --- a/dlfcn/Versions +++ b/dlfcn/Versions @@ -5,10 +5,14 @@ libc { dlerror; dlsym; } + GLIBC_2.3.4 { + dlmopen; + } GLIBC_2.34 { dladdr; dlclose; dlerror; + dlmopen; dlsym; } GLIBC_PRIVATE { @@ -28,6 +32,6 @@ libdl { dladdr1; dlinfo; } GLIBC_2.3.4 { - dlmopen; + __libdl_version_placeholder; } } |