diff options
Diffstat (limited to '')
-rw-r--r-- | libc-top-half/musl/crt/x32/crti.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/crt/x32/crti.s b/libc-top-half/musl/crt/x32/crti.s new file mode 100644 index 0000000..4788968 --- /dev/null +++ b/libc-top-half/musl/crt/x32/crti.s @@ -0,0 +1,9 @@ +.section .init +.global _init +_init: + push %rax + +.section .fini +.global _fini +_fini: + push %rax |