aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/munmap.h
blob: 4a876d6d49c66e6f8a55bbd86047e8188d9a1428 (plain)
1
2
3
4
5
6
7
8
9
#ifndef MUNMAP_H
#define MUNMAP_H
#include "syscall.h"

static int munmap(void * addr, unsigned long size) {
	return syscall(MUNMAP, addr, size);
}

#endif