mirror of
git://git.musl-libc.org/musl
synced 2025-02-11 00:17:32 +00:00
8 lines
110 B
C
8 lines
110 B
C
#include <sys/mman.h>
|
|
#include "syscall.h"
|
|
|
|
int mlockall(int flags)
|
|
{
|
|
return syscall(SYS_mlockall, flags);
|
|
}
|