mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-18 20:47:06 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
14 lines
162 B
ArmAsm
14 lines
162 B
ArmAsm
.syntax unified
|
|
|
|
.section .init
|
|
.global _init
|
|
.type _init,%function
|
|
_init:
|
|
push {r0,lr}
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,%function
|
|
_fini:
|
|
push {r0,lr}
|