From 7f5d060450265f582f6bd6fef2958e8ddca1568a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 21 Dec 2021 01:27:51 +0100 Subject: [PATCH] LibCore: Add missing include to System.h --- Userland/Libraries/LibCore/System.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibCore/System.h b/Userland/Libraries/LibCore/System.h index 7e582c2bfb..dc7bc79455 100644 --- a/Userland/Libraries/LibCore/System.h +++ b/Userland/Libraries/LibCore/System.h @@ -16,6 +16,7 @@ #include #include #include +#include namespace Core::System {