use umount2 syscall for umount (new targets lack old 1-arg umount)
[oweals/musl.git] / src / mman / munlockall.c
1 #include <sys/mman.h>
2 #include "syscall.h"
3
4 int munlockall(void)
5 {
6         return syscall0(__NR_munlockall);
7 }