summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/cris/crtn.S
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/cris/crtn.S')
-rw-r--r--libc/sysdeps/linux/cris/crtn.S27
1 files changed, 27 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/cris/crtn.S b/libc/sysdeps/linux/cris/crtn.S
new file mode 100644
index 000000000..e9d8a963f
--- /dev/null
+++ b/libc/sysdeps/linux/cris/crtn.S
@@ -0,0 +1,27 @@
+#NO_APP
+ .file "initfini.c"
+#APP
+
+ .section .init
+#NO_APP
+ .align 1
+ .global _init
+ .type _init, @function
+#NO_APP
+ movem [$sp+],$r0
+ Jump [$sp+]
+ .size _init, .-_init
+#APP
+
+ .section .fini
+#NO_APP
+ .align 1
+ .global _fini
+ .type _fini, @function
+#NO_APP
+ movem [$sp+],$r0
+ Jump [$sp+]
+ .size _fini, .-_fini
+#APP
+
+/*@TRAILER_BEGINS*/