blob: e54aff6b52d67e06ba474ce14898d9caedf152dd [file] [log] [blame]
#include <errno.h>
#include <sys/mman.h>
int mlockall(int flags) {
errno = ENOSYS;
return -1;
}