1#include <errno.h>
2#include <sys/mman.h>
3
4int msync(void* start, size_t len, int flags) {
5    errno = ENOSYS;
6    return -1;
7}
8