musl/crt/arm/crti.s
Rich Felker 976c0fdcb5 remove init/fini array asm from arm crti/crtn files
this code has been replaced by portable C code that works on all
archs. the old asm needs to be removed or ctors/dtors will run twice.
2013-07-21 03:48:35 -04:00

10 lines
101 B
ArmAsm

.section .init
.global _init
_init:
push {r0,lr}
.section .fini
.global _fini
_fini:
push {r0,lr}