diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:59:37 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:59:37 +0200 |
commit | 17e00cc69eac2ec10ac69a3f85db0dffc9d73845 (patch) | |
tree | 191b439f8d7fd543620e503117dea86e0e37ac68 /elf/tst-_dl_addr_inside_object.c | |
parent | 8d2f9410d5f93e0ca15c9efe48a97d04726152c2 (diff) | |
download | glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.gz glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.bz2 glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.zip |
elf: Remove internal_function attribute
Diffstat (limited to 'elf/tst-_dl_addr_inside_object.c')
-rw-r--r-- | elf/tst-_dl_addr_inside_object.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/elf/tst-_dl_addr_inside_object.c b/elf/tst-_dl_addr_inside_object.c index 1604b8df63..0a407ec19c 100644 --- a/elf/tst-_dl_addr_inside_object.c +++ b/elf/tst-_dl_addr_inside_object.c @@ -22,8 +22,7 @@ #include <elf.h> #include <libc-symbols.h> -extern int internal_function _dl_addr_inside_object (struct link_map *l, - const ElfW(Addr) addr); +extern int _dl_addr_inside_object (struct link_map *l, const ElfW(Addr) addr); static int do_test (void) |