math: bessel cleanup (j1.c and j1f.c)
[musl] / src / mman / mprotect.c
1 #include <sys/mman.h>
2 #include <limits.h>
3 #include "syscall.h"
4
5 int mprotect(void *addr, size_t len, int prot)
6 {
7         size_t start, end;
8         start = (size_t)addr & -PAGE_SIZE;
9         end = (size_t)((char *)addr + len + PAGE_SIZE-1) & -PAGE_SIZE;
10         return syscall(SYS_mprotect, start, end-start, prot);
11 }