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 | 492560a32e14c9a985274e1995b67a577197261e (patch) | |
tree | a356eea3cb1f886fdb4b39a6a64e62582ca74679 /dlfcn/Versions | |
parent | 6a1ed32789eaec6e1cd4345552e7342b5b18da5f (diff) | |
download | glibc-492560a32e14c9a985274e1995b67a577197261e.tar.gz glibc-492560a32e14c9a985274e1995b67a577197261e.tar.xz glibc-492560a32e14c9a985274e1995b67a577197261e.zip |
dlfcn: Move dladdr1 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 584035e203..acd9402b34 100644 --- a/dlfcn/Versions +++ b/dlfcn/Versions @@ -5,10 +5,14 @@ libc { dlerror; dlsym; } + GLIBC_2.3.3 { + dladdr1; + } GLIBC_2.3.4 { dlmopen; } GLIBC_2.34 { + dladdr1; dladdr; dlclose; dlerror; @@ -29,7 +33,7 @@ libdl { dlopen; dlvsym; } GLIBC_2.3.3 { - dladdr1; dlinfo; + dlinfo; } GLIBC_2.3.4 { __libdl_version_placeholder; |