blob: 3040189ad7df6078e5e0ddb7e1c19af769c4d48c [file] [log] [blame]
#define _GNU_SOURCE
#include <errno.h>
#include <sys/mman.h>
int posix_madvise(void* addr, size_t len, int advice) {
if (advice == MADV_DONTNEED)
return 0;
errno = ENOSYS;
return -1;
}