Userland: Remove workarounds for LibIPC include order sensitivity

This commit is contained in:
Timothy Flynn 2022-11-15 11:32:00 -05:00 committed by Tim Flynn
commit 4fd9e3ab08
Notes: sideshowbarker 2024-07-17 18:06:52 +09:00
17 changed files with 11 additions and 46 deletions

View file

@ -6,15 +6,13 @@
*/
#include "KeyboardSettingsWidget.h"
#include <LibConfig/Client.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/System.h>
#include <LibGUI/Application.h>
#include <LibGUI/SettingsWindow.h>
#include <LibMain/Main.h>
// Including this after to avoid LibIPC errors
#include <LibConfig/Client.h>
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
TRY(Core::System::pledge("stdio rpath recvfd sendfd unix proc exec"));