diff options
Diffstat (limited to 'userland/libc/crt0.s')
-rw-r--r-- | userland/libc/crt0.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/crt0.s b/userland/libc/crt0.s index 05144d4..c950949 100644 --- a/userland/libc/crt0.s +++ b/userland/libc/crt0.s @@ -1,6 +1,7 @@ .global _start .extern main _start: + call _libc_setup call main mov %eax, %ebx mov $8, %eax |