simplify logic in stpcpy; avoid copying first aligned byte twice
[musl] / src / mman / munlock.c
1 #include <sys/mman.h>
2 #include "syscall.h"
3
4 int munlock(const void *addr, size_t len)
5 {
6         return syscall(SYS_munlock, addr, len);
7 }