fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / src / mman / mlock.c
1 #include <sys/mman.h>
2 #include "syscall.h"
3
4 int mlock(const void *addr, size_t len)
5 {
6         return syscall(SYS_mlock, addr, len);
7 }