diff options
Diffstat (limited to 'src/library/grapes/syscall.h')
-rw-r--r-- | src/library/grapes/syscall.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/library/grapes/syscall.h b/src/library/grapes/syscall.h new file mode 100644 index 0000000..9f4c280 --- /dev/null +++ b/src/library/grapes/syscall.h @@ -0,0 +1,10 @@ +#ifndef DEF_SYSCALL_H +#define DEF_SYSCALL_H + +void thread_exit(); +void schedule(); +void thread_sleep(int time); +void process_exit(int retval); +void printk(char* str); + +#endif |