diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-23 10:59:50 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-23 11:33:36 +0100 |
commit | 21a5fb0fa21a92030f68bc6e9df6a9e438355f11 (patch) | |
tree | 9883ba94b650d2a6fd97f38942ba40ac3da35694 /Userland/Games/Minesweeper/main.cpp | |
parent | acc2eccede491e0c34d718e348d76c13c190347c (diff) | |
download | serenity-21a5fb0fa21a92030f68bc6e9df6a9e438355f11.zip |
LibCore+LibSystem: Move syscall wrappers from LibSystem to LibCore
With this change, System::foo() becomes Core::System::foo().
Since LibCore builds on other systems than SerenityOS, we now have to
make sure that wrappers work with just a standard C library underneath.
Diffstat (limited to 'Userland/Games/Minesweeper/main.cpp')
-rw-r--r-- | Userland/Games/Minesweeper/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Userland/Games/Minesweeper/main.cpp b/Userland/Games/Minesweeper/main.cpp index 889fa9e0bc..c6955129e4 100644 --- a/Userland/Games/Minesweeper/main.cpp +++ b/Userland/Games/Minesweeper/main.cpp @@ -7,6 +7,7 @@ #include "CustomGameDialog.h" #include "Field.h" #include <LibConfig/Client.h> +#include <LibCore/System.h> #include <LibGUI/Action.h> #include <LibGUI/ActionGroup.h> #include <LibGUI/Application.h> @@ -19,21 +20,20 @@ #include <LibGUI/SeparatorWidget.h> #include <LibGUI/Window.h> #include <LibMain/Main.h> -#include <LibSystem/Wrappers.h> #include <stdio.h> ErrorOr<int> serenity_main(Main::Arguments arguments) { - TRY(System::pledge("stdio rpath recvfd sendfd unix", nullptr)); + TRY(Core::System::pledge("stdio rpath recvfd sendfd unix", nullptr)); auto app = GUI::Application::construct(arguments); Config::pledge_domains("Minesweeper"); - TRY(System::pledge("stdio rpath recvfd sendfd", nullptr)); + TRY(Core::System::pledge("stdio rpath recvfd sendfd", nullptr)); - TRY(System::unveil("/res", "r")); - TRY(System::unveil(nullptr, nullptr)); + TRY(Core::System::unveil("/res", "r")); + TRY(Core::System::unveil(nullptr, nullptr)); auto app_icon = GUI::Icon::default_icon("app-minesweeper"); |