diff options
Diffstat (limited to 'libc/sysdeps/linux/arm/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/arm/crtn.S | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/crtn.S b/libc/sysdeps/linux/arm/crtn.S new file mode 100644 index 000000000..851898de0 --- /dev/null +++ b/libc/sysdeps/linux/arm/crtn.S @@ -0,0 +1,17 @@ + .file "initfini.c" + + .section .init + .align 2 + .global _init + .type _init, %function + ldr pc, [sp], #4 + .size _init, .-_init + + .section .fini + .align 2 + .global _fini + .type _fini, %function + ldr pc, [sp], #4 + .size _fini, .-_fini + + .ident "GCC: (GNU) 3.3.2 20031005 (Debian prerelease)" |