From f97e5a7088ce182256538216b1ca8d32aec824aa Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Wed, 5 Jun 2024 18:46:21 -0600 Subject: [PATCH] LibCore: Only include BeepInstruction in System.cpp on Serenity (cherry picked from commit f98e28912a9c700e78f6e57eb497fd3eb3134661; amended to not delete BeepInstruction.h, and to not insert a stray newline after lstat) --- Userland/Libraries/LibCore/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCore/System.cpp b/Userland/Libraries/LibCore/System.cpp index bda0ae1b461..63e6e7f790a 100644 --- a/Userland/Libraries/LibCore/System.cpp +++ b/Userland/Libraries/LibCore/System.cpp @@ -14,7 +14,6 @@ #include #include #include -#include #include #include #include @@ -29,6 +28,7 @@ #include #ifdef AK_OS_SERENITY +# include # include # include # include