diff --git a/Userland/Libraries/LibCore/DeprecatedFile.cpp b/Userland/Libraries/LibCore/DeprecatedFile.cpp index 15a5856a4a..f4e18665d9 100644 --- a/Userland/Libraries/LibCore/DeprecatedFile.cpp +++ b/Userland/Libraries/LibCore/DeprecatedFile.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibCore/DeprecatedFile.h b/Userland/Libraries/LibCore/DeprecatedFile.h index cd871b7822..eddf381315 100644 --- a/Userland/Libraries/LibCore/DeprecatedFile.h +++ b/Userland/Libraries/LibCore/DeprecatedFile.h @@ -11,10 +11,6 @@ #include #include -// FIXME: Make this a bit prettier. -#define DEFAULT_PATH "/usr/local/sbin:/usr/local/bin:/usr/bin:/bin" -#define DEFAULT_PATH_SV "/usr/local/sbin:/usr/local/bin:/usr/bin:/bin"sv - namespace Core { /// diff --git a/Userland/Services/ChessEngine/ChessEngine.cpp b/Userland/Services/ChessEngine/ChessEngine.cpp index e68e45e67b..e415e1b55e 100644 --- a/Userland/Services/ChessEngine/ChessEngine.cpp +++ b/Userland/Services/ChessEngine/ChessEngine.cpp @@ -7,7 +7,6 @@ #include "ChessEngine.h" #include "MCTSTree.h" #include -#include #include using namespace Chess::UCI; diff --git a/Userland/Services/TelnetServer/main.cpp b/Userland/Services/TelnetServer/main.cpp index 1481f02859..d2b8620f5e 100644 --- a/Userland/Services/TelnetServer/main.cpp +++ b/Userland/Services/TelnetServer/main.cpp @@ -9,10 +9,10 @@ #include #include #include -#include #include #include #include +#include #include #include #include diff --git a/Userland/Shell/Builtin.cpp b/Userland/Shell/Builtin.cpp index 47f56dbf51..e7ebcc099c 100644 --- a/Userland/Shell/Builtin.cpp +++ b/Userland/Shell/Builtin.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Shell/Shell.cpp b/Userland/Shell/Shell.cpp index 32d7280d5d..7471a8f248 100644 --- a/Userland/Shell/Shell.cpp +++ b/Userland/Shell/Shell.cpp @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include