diff options
Diffstat (limited to 'lib/libc/mman/munlock.c')
| -rw-r--r-- | lib/libc/mman/munlock.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/mman/munlock.c b/lib/libc/mman/munlock.c index b934c87d..2d62c032 100644 --- a/lib/libc/mman/munlock.c +++ b/lib/libc/mman/munlock.c @@ -1,5 +1,7 @@ -#include <syscall.h> -#include <sys/mman.h> +#include "asm/unistd_64.h" // for __NR_munlock + +#include <stddef.h> // for size_t +#include <syscall.h> // for __syscall_2, syscall int munlock(const void *addr, size_t len) { |
