summaryrefslogtreecommitdiffstats
path: root/lib/csu/i386-elf/crti.S
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csu/i386-elf/crti.S')
-rw-r--r--lib/csu/i386-elf/crti.S15
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/csu/i386-elf/crti.S b/lib/csu/i386-elf/crti.S
index 536d2c2..82b262f 100644
--- a/lib/csu/i386-elf/crti.S
+++ b/lib/csu/i386-elf/crti.S
@@ -25,7 +25,14 @@
* $FreeBSD$
*/
-/*
- * This file is not used any more. It will go away as soon as the gcc
- * linker specs have been updated accordingly.
- */
+ .section .init,"ax",@progbits
+ .align 4
+ .globl _init
+ .type _init,@function
+_init:
+
+ .section .fini,"ax",@progbits
+ .align 4
+ .globl _fini
+ .type _fini,@function
+_fini:
OpenPOWER on IntegriCloud