diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-11-30 16:23:58 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-11-30 16:23:58 +0100 |
commit | b04beebf0731c0da49bf9113bf299acf56e4c2e5 (patch) | |
tree | e9d30cedb0a14f36f23dcab98641603c2cbe92dc /elf/Versions | |
parent | 9e78f6f6e7134a5f299cc8de77370218f8019237 (diff) | |
download | glibc-b04beebf0731c0da49bf9113bf299acf56e4c2e5.tar.gz |
ld.so: Remove __libc_memalign
It is no longer needed since commit 6c444ad6e953dbdf9c7be065308a0a777
(elf: Do not use memalign for TCB/TLS blocks allocation [BZ #17730]).
Applications do not link against ld.so and will use the definition in
libc.so, so there is no ABI impact.
Diffstat (limited to 'elf/Versions')
-rw-r--r-- | elf/Versions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/Versions b/elf/Versions index 05e5449f4d..08f76a7a20 100644 --- a/elf/Versions +++ b/elf/Versions @@ -34,8 +34,8 @@ libc { ld { GLIBC_2.0 { - # Function from libc.so which must be shared with libc. - __libc_memalign; calloc; free; malloc; realloc; + # Functions which are interposed from libc.so. + calloc; free; malloc; realloc; _r_debug; } |