diff options
Diffstat (limited to 'Source/Library/Userland/Syscall/Syscall.wtf.h')
-rw-r--r-- | Source/Library/Userland/Syscall/Syscall.wtf.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/Library/Userland/Syscall/Syscall.wtf.h b/Source/Library/Userland/Syscall/Syscall.wtf.h new file mode 100644 index 0000000..0401a89 --- /dev/null +++ b/Source/Library/Userland/Syscall/Syscall.wtf.h @@ -0,0 +1,13 @@ +#ifndef DEF_SYSCALL_WTF_H +#define DEF_SYSCALL_WTF_H + +#include <types.h> + +//Three basic syscalls, just for testing +void putch(char); +void sleep(u32int); +void write_hex(u32int); + +u32int syscall(u32int n, u32int a, u32int b = 0, u32int c = 0, u32int d = 0, u32int e = 0); + +#endif |