mirror of
https://github.com/fluencelabs/musl
synced 2025-04-24 23:02:14 +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}
|