musl-tcc/src/mman/munlockall.c

8 lines
102 B
C

#include <sys/mman.h>
#include "syscall.h"
int munlockall(void)
{
return syscall(SYS_munlockall);
}