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