blob: 9af3f44d1b9490fa9f519eec0059444c08d2286b [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;
}