summaryrefslogtreecommitdiff
path: root/lib/libc/mman/munmap.c
blob: 04ad980089267b687adb6b20dfd87908f536154b (plain)
1
2
3
4
5
6
7
8
9
#include "asm/unistd_64.h" // for __NR_munmap

#include <sys/mman.h> // for munmap, size_t
#include <syscall.h>  // for __syscall_2, syscall

int munmap(void *addr, size_t len)
{
	return syscall(munmap, addr, len);
}