summaryrefslogtreecommitdiff
path: root/kernel/syscalls/munmap.c
blob: d57ef36da5ef768fa173871fa9fc6504be80914a (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);
}