blob: a28ac974fb3f64e5486185e99c171ca5e47e7870 [file] [log] [blame]
#include <errno.h>
#include <sys/mman.h>
int mlock(const void* addr, size_t len) {
errno = ENOSYS;
return -1;
}