From 50858d043cbd6f61cc091c6772f981ca2d6cca6b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 00:39:24 +0200 Subject: Added basic exec calls for init and started libc --- src/userspace/libc/syscall.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/userspace/libc/syscall.h') diff --git a/src/userspace/libc/syscall.h b/src/userspace/libc/syscall.h index 61ffecc..394118c 100644 --- a/src/userspace/libc/syscall.h +++ b/src/userspace/libc/syscall.h @@ -70,12 +70,14 @@ */ DECL_SYSCALL0(halt); -DECL_SYSCALL1(putch, const char *); +DECL_SYSCALL1(exec, char *); + +DECL_SYSCALL1(putch, char *); DECL_SYSCALL0(getch); -DECL_SYSCALL1(malloc, uint32_t); +DECL_SYSCALL1(malloc, u32); -DECL_SYSCALL1(free, uint32_t); +DECL_SYSCALL1(free, u32); -#endif \ No newline at end of file +#endif -- cgit v1.2.3