summaryrefslogtreecommitdiff
path: root/kernel/syscalls/munmap.c
blob: 82f7918de1287acab8534878c2b3e890e4187571 (plain)
1
2
3
4
5
6
#include <sched/scheduler.h>
#include <syscalls.h>

int syscall_munmap(void *addr, size_t length) {
return munmap(addr, length);
}