blob: 300230faf39ffd184da5697b08b39d2281e5e27e [file] [log] [blame]
#include <errno.h>
#include <sys/mman.h>
int msync(void* start, size_t len, int flags) {
errno = ENOSYS;
return -1;
}