summaryrefslogtreecommitdiff
path: root/lib/libc/mman/posix_madvise.c
blob: a19adec259e8586da89ce00ba72ecaf0bb4ebb7b (plain)
1
2
3
4
5
6
7
#include <sys/mman.h>
#include <syscall.h>

int posix_madvise(void *addr, size_t len, int advice)
{
	return syscall(madvise, addr, len, advice);
}