summaryrefslogtreecommitdiff
path: root/Userland/Utilities/tt.cpp
diff options
context:
space:
mode:
authorJean-Baptiste Boric <jblbeurope@gmail.com>2021-05-14 17:38:33 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-14 22:24:02 +0200
commiteecf7a20972b492d249884c1f725e7ae7cd36c8e (patch)
tree4fa0fa7ac06a2f277e73f375b43075dc37586af8 /Userland/Utilities/tt.cpp
parente16894af5affa556d9198feef864e27d19d504fb (diff)
downloadserenity-eecf7a20972b492d249884c1f725e7ae7cd36c8e.zip
LibC: Move mman.h to sys/mman.h
POSIX mandates that it is placed there.
Diffstat (limited to 'Userland/Utilities/tt.cpp')
-rw-r--r--Userland/Utilities/tt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/tt.cpp b/Userland/Utilities/tt.cpp
index 599425ee57..3f5dbc4e3e 100644
--- a/Userland/Utilities/tt.cpp
+++ b/Userland/Utilities/tt.cpp
@@ -6,11 +6,11 @@
#include <LibCore/ArgsParser.h>
#include <errno.h>
-#include <mman.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/mman.h>
#include <unistd.h>
static int mutex_test();