aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/libc/syscall.c')
-rw-r--r--src/userspace/libc/syscall.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c
index cf9dc89..d5c6708 100644
--- a/src/userspace/libc/syscall.c
+++ b/src/userspace/libc/syscall.c
@@ -21,4 +21,8 @@ DEFN_SYSCALL0(get_pid, SYS_GET_PID);
DEFN_SYSCALL1(malloc, SYS_MALLOC, u32);
-DEFN_SYSCALL1(free, SYS_FREE, u32); \ No newline at end of file
+DEFN_SYSCALL1(free, SYS_FREE, u32);
+
+DEFN_SYSCALL1(get, SYS_GET, u32);
+
+DEFN_SYSCALL2(map, SYS_MAP, u32, u8 *); \ No newline at end of file