diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-01-03 15:30:44 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-07 10:01:37 -0700 |
commit | 32810503595a83d3bb4c709759224223f2137e0c (patch) | |
tree | b39d1699b31e65501c869f70ad51b47603b08508 /Userland/Applications/CrashReporter | |
parent | d575cfda613197a7e090ee8dee053e48df17d730 (diff) | |
download | serenity-32810503595a83d3bb4c709759224223f2137e0c.zip |
Everywhere: Remove "LibC/" includes, add lint-rule against it
Diffstat (limited to 'Userland/Applications/CrashReporter')
-rw-r--r-- | Userland/Applications/CrashReporter/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/CrashReporter/main.cpp b/Userland/Applications/CrashReporter/main.cpp index e2553e9aec..feb28fd3a3 100644 --- a/Userland/Applications/CrashReporter/main.cpp +++ b/Userland/Applications/CrashReporter/main.cpp @@ -11,8 +11,6 @@ #include <AK/Types.h> #include <AK/URL.h> #include <Applications/CrashReporter/CrashReporterWindowGML.h> -#include <LibC/serenity.h> -#include <LibC/spawn.h> #include <LibCore/ArgsParser.h> #include <LibCore/File.h> #include <LibCore/System.h> @@ -39,6 +37,8 @@ #include <LibGUI/Window.h> #include <LibMain/Main.h> #include <LibThreading/BackgroundAction.h> +#include <serenity.h> +#include <spawn.h> #include <string.h> #include <unistd.h> |