summaryrefslogtreecommitdiff
path: root/Userland/Applications/CrashReporter
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-01-03 15:30:44 +0100
committerAndrew Kaster <andrewdkaster@gmail.com>2023-01-07 10:01:37 -0700
commit32810503595a83d3bb4c709759224223f2137e0c (patch)
treeb39d1699b31e65501c869f70ad51b47603b08508 /Userland/Applications/CrashReporter
parentd575cfda613197a7e090ee8dee053e48df17d730 (diff)
downloadserenity-32810503595a83d3bb4c709759224223f2137e0c.zip
Everywhere: Remove "LibC/" includes, add lint-rule against it
Diffstat (limited to 'Userland/Applications/CrashReporter')
-rw-r--r--Userland/Applications/CrashReporter/main.cpp4
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>