xref: /aosp_15_r20/external/musl/src/mman/munlock.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <sys/mman.h>
2 #include "syscall.h"
3 
munlock(const void * addr,size_t len)4 int munlock(const void *addr, size_t len)
5 {
6 	return syscall(SYS_munlock, addr, len);
7 }
8