summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sparc/crtn.S
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/sparc/crtn.S')
-rw-r--r--libc/sysdeps/linux/sparc/crtn.S21
1 files changed, 21 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sparc/crtn.S b/libc/sysdeps/linux/sparc/crtn.S
new file mode 100644
index 000000000..345638f67
--- /dev/null
+++ b/libc/sysdeps/linux/sparc/crtn.S
@@ -0,0 +1,21 @@
+ .file "initfini.c"
+
+ .section .init
+ .align 4
+ .global _init
+ .type _init, #function
+ .proc 020
+ ret
+ restore
+ .size _init, .-_init
+
+ .section .fini
+ .align 4
+ .global _fini
+ .type _fini, #function
+ .proc 020
+ ret
+ restore
+ .size _fini, .-_fini
+
+ .ident "GCC: (GNU) 3.3.2"