#include "asm/unistd_64.h" // for __NR_munlock #include // for size_t #include // for __syscall_2, syscall int munlock(const void *addr, size_t len) { return syscall(munlock, addr, len); }