summaryrefslogtreecommitdiff
path: root/nptl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-06-17 18:02:40 +0000
committerUlrich Drepper <drepper@redhat.com>2007-06-17 18:02:40 +0000
commitc4243ff43f097b4ac4cd1b81c59a5bbb33558194 (patch)
treea461805ed432df3177ef1b06ffe358b2def29bea /nptl
parentb26e274db237c8e8f076ac80e2aa3afc51028f1e (diff)
Tell gcc about the nonstandard sections.
Diffstat (limited to 'nptl')
-rw-r--r--nptl/sysdeps/pthread/pt-initfini.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/pthread/pt-initfini.c b/nptl/sysdeps/pthread/pt-initfini.c
index 1e35edd3eb..9c00dc0b7d 100644
--- a/nptl/sysdeps/pthread/pt-initfini.c
+++ b/nptl/sysdeps/pthread/pt-initfini.c
@@ -72,7 +72,7 @@ call_initialize_minimal (void)
}
SECTION (".init");
-extern void _init (void);
+extern void __attribute__ ((section (".init"))) _init (void);
void
_init (void)
{
@@ -93,7 +93,7 @@ asm ("\n/*@_init_EPILOG_ENDS*/");
asm ("\n/*@_fini_PROLOG_BEGINS*/");
SECTION (".fini");
-extern void _fini (void);
+extern void __attribute__ ((section (".fini"))) _fini (void);
void
_fini (void)
{