#include #include "syscall.h" int mlockall(int flags) { return syscall(SYS_mlockall, flags); } #ifdef TEST int main(void) { return 0; } #endif