diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-07 08:40:41 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-07 08:41:24 +0200 |
commit | 7a5db2e82fbb6c3a6e3fdae02b7166c5d0e8c7a8 (patch) | |
tree | d67381f1001d86e3b2596a4caf857b2926bf225a /elf/dl-sym.c | |
parent | ceda365fbac3083e16eed07892fbd5970b3839a0 (diff) | |
download | glibc-7a5db2e82fbb6c3a6e3fdae02b7166c5d0e8c7a8.zip glibc-7a5db2e82fbb6c3a6e3fdae02b7166c5d0e8c7a8.tar.gz glibc-7a5db2e82fbb6c3a6e3fdae02b7166c5d0e8c7a8.tar.bz2 |
elf: Clean up GLIBC_PRIVATE exports of internal libdl symbols
They are no longer needed after everything has been moved into
libc. The _dl_vsym test has to be removed because the symbol
cannot be used outside libc anymore.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'elf/dl-sym.c')
-rw-r--r-- | elf/dl-sym.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/elf/dl-sym.c b/elf/dl-sym.c index fa0cce6..de5769f 100644 --- a/elf/dl-sym.c +++ b/elf/dl-sym.c @@ -188,11 +188,9 @@ _dl_vsym (void *handle, const char *name, const char *version, void *who) return do_sym (handle, name, who, &vers, 0); } -libc_hidden_def (_dl_vsym) void * _dl_sym (void *handle, const char *name, void *who) { return do_sym (handle, name, who, NULL, DL_LOOKUP_RETURN_NEWEST); } -libc_hidden_def (_dl_sym) |