#include #include "syscall.h" int munlockall(void) { return syscall(SYS_munlockall); } #ifdef TEST int main(void) { return 0; } #endif