diff options
author | Marvin Borner | 2021-03-16 12:25:02 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-16 12:25:02 +0100 |
commit | 0648818bb141cec9a5513933a3129e965250e19c (patch) | |
tree | b9cb785e904c44340aaa035ad13255cc61a0cf55 /libc/crt | |
parent | e8b3efb5bafc0502df88c97bc47b361a4d231c5e (diff) |
Cleanup and atexit
Diffstat (limited to 'libc/crt')
-rw-r--r-- | libc/crt/crt0.asm | 6 |
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 $ |