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