mirror of
git://git.musl-libc.org/musl
synced 2025-03-11 06:07:29 +00:00
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.
10 lines
101 B
ArmAsm
10 lines
101 B
ArmAsm
.section .init
|
|
.global _init
|
|
_init:
|
|
push {r0,lr}
|
|
|
|
.section .fini
|
|
.global _fini
|
|
_fini:
|
|
push {r0,lr}
|