diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-05-14 17:38:33 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-14 22:24:02 +0200 |
commit | eecf7a20972b492d249884c1f725e7ae7cd36c8e (patch) | |
tree | 4fa0fa7ac06a2f277e73f375b43075dc37586af8 /Tests/Kernel | |
parent | e16894af5affa556d9198feef864e27d19d504fb (diff) | |
download | serenity-eecf7a20972b492d249884c1f725e7ae7cd36c8e.zip |
LibC: Move mman.h to sys/mman.h
POSIX mandates that it is placed there.
Diffstat (limited to 'Tests/Kernel')
-rw-r--r-- | Tests/Kernel/fuzz-syscalls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Kernel/fuzz-syscalls.cpp b/Tests/Kernel/fuzz-syscalls.cpp index 6a945a06f6..9e16014252 100644 --- a/Tests/Kernel/fuzz-syscalls.cpp +++ b/Tests/Kernel/fuzz-syscalls.cpp @@ -10,11 +10,11 @@ #include <AK/StringBuilder.h> #include <AK/Vector.h> #include <errno.h> -#include <mman.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <sys/mman.h> #include <syscall.h> static bool is_deadly_syscall(int fn) |