diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:55:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:56:21 +0200 |
commit | fd8a87c0c1932de591e7ad108ff6288a4b6b18c9 (patch) | |
tree | 6c5c2768fc065d86edff455af1924fe756673254 /sysdeps/unix/sysv/linux/arm | |
parent | 7ec366a08a7cec7bd23d6b2a4f7954860e3a16fd (diff) | |
download | glibc-fd8a87c0c1932de591e7ad108ff6288a4b6b18c9.zip glibc-fd8a87c0c1932de591e7ad108ff6288a4b6b18c9.tar.gz glibc-fd8a87c0c1932de591e7ad108ff6288a4b6b18c9.tar.bz2 |
resolv: Move dn_comp to its own file and into libc
And reformat it to GNU style.
dn_comp is used in various programs, so keep it as a non-deprecated
symbol. Switch to dn_comp (not __dn_comp) for the ABI name. There
are no internal users, so interposition is not a problem.
The __dn_comp symbol was moved with scripts/move-symbol-to-libc.py
--no-new-version. dn_comp@@GLIBC_2.34 was added with
make update-all-abi.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/arm')
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/be/libc.abilist | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/be/libresolv.abilist | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/le/libc.abilist | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/le/libresolv.abilist | 1 |
4 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/be/libc.abilist b/sysdeps/unix/sysv/linux/arm/be/libc.abilist index 9d344d5..4a709a3 100644 --- a/sysdeps/unix/sysv/linux/arm/be/libc.abilist +++ b/sysdeps/unix/sysv/linux/arm/be/libc.abilist @@ -317,6 +317,7 @@ GLIBC_2.34 dlmopen F GLIBC_2.34 dlopen F GLIBC_2.34 dlsym F GLIBC_2.34 dlvsym F +GLIBC_2.34 dn_comp F GLIBC_2.34 dn_expand F GLIBC_2.34 execveat F GLIBC_2.34 forkpty F @@ -649,6 +650,7 @@ GLIBC_2.4 __daylight D 0x4 GLIBC_2.4 __dcgettext F GLIBC_2.4 __default_morecore F GLIBC_2.4 __dgettext F +GLIBC_2.4 __dn_comp F GLIBC_2.4 __dn_expand F GLIBC_2.4 __dup2 F GLIBC_2.4 __duplocale F diff --git a/sysdeps/unix/sysv/linux/arm/be/libresolv.abilist b/sysdeps/unix/sysv/linux/arm/be/libresolv.abilist index 1049155..e67eec5 100644 --- a/sysdeps/unix/sysv/linux/arm/be/libresolv.abilist +++ b/sysdeps/unix/sysv/linux/arm/be/libresolv.abilist @@ -1,6 +1,5 @@ GLIBC_2.4 __b64_ntop F GLIBC_2.4 __b64_pton F -GLIBC_2.4 __dn_comp F GLIBC_2.4 __dn_count_labels F GLIBC_2.4 __dn_skipname F GLIBC_2.4 __fp_nquery F diff --git a/sysdeps/unix/sysv/linux/arm/le/libc.abilist b/sysdeps/unix/sysv/linux/arm/le/libc.abilist index 9f0e945..78248cf 100644 --- a/sysdeps/unix/sysv/linux/arm/le/libc.abilist +++ b/sysdeps/unix/sysv/linux/arm/le/libc.abilist @@ -314,6 +314,7 @@ GLIBC_2.34 dlmopen F GLIBC_2.34 dlopen F GLIBC_2.34 dlsym F GLIBC_2.34 dlvsym F +GLIBC_2.34 dn_comp F GLIBC_2.34 dn_expand F GLIBC_2.34 execveat F GLIBC_2.34 forkpty F @@ -646,6 +647,7 @@ GLIBC_2.4 __daylight D 0x4 GLIBC_2.4 __dcgettext F GLIBC_2.4 __default_morecore F GLIBC_2.4 __dgettext F +GLIBC_2.4 __dn_comp F GLIBC_2.4 __dn_expand F GLIBC_2.4 __dup2 F GLIBC_2.4 __duplocale F diff --git a/sysdeps/unix/sysv/linux/arm/le/libresolv.abilist b/sysdeps/unix/sysv/linux/arm/le/libresolv.abilist index 1049155..e67eec5 100644 --- a/sysdeps/unix/sysv/linux/arm/le/libresolv.abilist +++ b/sysdeps/unix/sysv/linux/arm/le/libresolv.abilist @@ -1,6 +1,5 @@ GLIBC_2.4 __b64_ntop F GLIBC_2.4 __b64_pton F -GLIBC_2.4 __dn_comp F GLIBC_2.4 __dn_count_labels F GLIBC_2.4 __dn_skipname F GLIBC_2.4 __fp_nquery F |