xref: /third_party/musl/src/mman/mlockall.c (revision 570af302)
1#include <sys/mman.h>
2#include "syscall.h"
3#include <unsupported_api.h>
4
5int mlockall(int flags)
6{
7	UNSUPPORTED_API_VOID(LITEOS_A);
8	return syscall(SYS_mlockall, flags);
9}
10