aboutsummaryrefslogtreecommitdiff
path: root/libc/crt/crt0.asm
diff options
context:
space:
mode:
Diffstat (limited to 'libc/crt/crt0.asm')
-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 $