[git commit] Move extern prototype out of function scope
Ron
ron at debian.org
Fri Jun 26 19:14:17 UTC 2009
commit: http://git.uclibc.org/uClibc/commit/?id=680ef7ed1f01ab4fb77868a9dc5078273fb41bc6
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master
gcc-4.4 now barks about this, so appease it.
Signed-off-by: Ron Lee <ron at debian.org>
Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
ldso/ldso/arm/dl-sysdep.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ldso/ldso/arm/dl-sysdep.h b/ldso/ldso/arm/dl-sysdep.h
index 5191dd7..75c58b0 100644
--- a/ldso/ldso/arm/dl-sysdep.h
+++ b/ldso/ldso/arm/dl-sysdep.h
@@ -98,11 +98,12 @@ elf_machine_dynamic (void)
return dynamic;
}
+extern void __dl_start __asm__ ("_dl_start");
+
/* Return the run-time load address of the shared object. */
static __always_inline Elf32_Addr __attribute__ ((unused))
elf_machine_load_address (void)
{
- extern void __dl_start __asm__ ("_dl_start");
Elf32_Addr got_addr = (Elf32_Addr) &__dl_start;
Elf32_Addr pcrel_addr;
#if defined __OPTIMIZE__ && !defined __thumb__
--
1.6.3.3
More information about the uClibc-cvs
mailing list