diff options
author | Marvin Borner | 2020-04-29 00:39:24 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-29 00:39:24 +0200 |
commit | 50858d043cbd6f61cc091c6772f981ca2d6cca6b (patch) | |
tree | 82afcc2daf9c4b67d29832923283654913490d06 /src/userspace/libc/syscall.h | |
parent | 34c752f6fe4f71169172f1b3e46b1eddf69eba6e (diff) |
Added basic exec calls for init and started libc
Diffstat (limited to 'src/userspace/libc/syscall.h')
-rw-r--r-- | src/userspace/libc/syscall.h | 10 |
1 files changed, 6 insertions, 4 deletions
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 |