1#include <sys/mman.h>
2#include "syscall.h"
3
4int mlockall(int flags)
5{
6	return syscall(SYS_mlockall, flags);
7}
8