summaryrefslogtreecommitdiff
path: root/kernel/syscalls/munmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls/munmap.c')
-rw-r--r--kernel/syscalls/munmap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/syscalls/munmap.c b/kernel/syscalls/munmap.c
new file mode 100644
index 0000000..82f7918
--- /dev/null
+++ b/kernel/syscalls/munmap.c
@@ -0,0 +1,6 @@
+#include <sched/scheduler.h>
+#include <syscalls.h>
+
+int syscall_munmap(void *addr, size_t length) {
+return munmap(addr, length);
+}