diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-14 12:29:21 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-14 15:08:48 +0200 |
commit | 630bf4916f10bdba28a99480ef32170b977ea5fc (patch) | |
tree | 7712de6ab55a8351a22253d6ee234092297afbab /elf | |
parent | 9fa7449b35244645acaa450046b37678f46fe0f1 (diff) | |
download | glibc-630bf4916f10bdba28a99480ef32170b977ea5fc.tar.gz |
_dl_start: Remove internal_function attribute
The i386 startup code needs adjusting because it calls the function
and the ABI has changed.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 1772f89ea8..d8e75c02e6 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -439,7 +439,7 @@ _dl_start_final (void *arg, struct dl_start_final_info *info) return start_addr; } -static ElfW(Addr) __attribute_used__ internal_function +static ElfW(Addr) __attribute_used__ _dl_start (void *arg) { #ifdef DONT_USE_BOOTSTRAP_MAP |