aboutsummaryrefslogtreecommitdiff
path: root/libc/crt
diff options
context:
space:
mode:
authorMarvin Borner2021-03-16 12:25:02 +0100
committerMarvin Borner2021-03-16 12:25:02 +0100
commit0648818bb141cec9a5513933a3129e965250e19c (patch)
treeb9cb785e904c44340aaa035ad13255cc61a0cf55 /libc/crt
parente8b3efb5bafc0502df88c97bc47b361a4d231c5e (diff)
Cleanup and atexit
Diffstat (limited to 'libc/crt')
-rw-r--r--libc/crt/crt0.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/crt/crt0.asm b/libc/crt/crt0.asm
index 0f8024d..e002952 100644
--- a/libc/crt/crt0.asm
+++ b/libc/crt/crt0.asm
@@ -3,13 +3,13 @@
section .text
extern main
-extern sys1
+extern exit
+extern atexit_trigger
global _start
_start:
call main
push eax
- push 9
- call sys1
+ call exit
jmp $