summaryrefslogtreecommitdiff
path: root/src/mman/posix_madvise.c
blob: 4727ad750e6c0af33b2285f11dc0f2e5f433acdf (plain) (blame)
1
2
3
4
5
6
#include <sys/mman.h>

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