summaryrefslogtreecommitdiff
path: root/userland/libc/sys/mman/munmap.c
blob: 940ea46e90f01785b2d0f5b210c54fd6d2ec8069 (plain)
1
2
3
4
5
6
#include <sys/mman.h>
#include <syscall.h>

int munmap(void *addr, size_t length) {
  RC_ERRNO(syscall(SYS_MUNMAP, addr, length,0, 0, 0));
}