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/Libraries/LibDebug | |
parent | d575cfda613197a7e090ee8dee053e48df17d730 (diff) | |
download | serenity-32810503595a83d3bb4c709759224223f2137e0c.zip |
Everywhere: Remove "LibC/" includes, add lint-rule against it
Diffstat (limited to 'Userland/Libraries/LibDebug')
-rw-r--r-- | Userland/Libraries/LibDebug/DebugSession.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibDebug/ProcessInspector.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibDebug/DebugSession.h b/Userland/Libraries/LibDebug/DebugSession.h index ed6e3750f8..dad0e4bd2c 100644 --- a/Userland/Libraries/LibDebug/DebugSession.h +++ b/Userland/Libraries/LibDebug/DebugSession.h @@ -13,12 +13,12 @@ #include <AK/NonnullRefPtr.h> #include <AK/Optional.h> #include <AK/OwnPtr.h> -#include <LibC/sys/arch/regs.h> #include <LibCore/MappedFile.h> #include <LibDebug/DebugInfo.h> #include <LibDebug/ProcessInspector.h> #include <signal.h> #include <stdio.h> +#include <sys/arch/regs.h> #include <sys/ptrace.h> #include <sys/wait.h> #include <unistd.h> diff --git a/Userland/Libraries/LibDebug/ProcessInspector.h b/Userland/Libraries/LibDebug/ProcessInspector.h index d72aac6b65..8247f6bb19 100644 --- a/Userland/Libraries/LibDebug/ProcessInspector.h +++ b/Userland/Libraries/LibDebug/ProcessInspector.h @@ -9,7 +9,7 @@ #include "LoadedLibrary.h" #include <AK/Types.h> -#include <LibC/sys/arch/regs.h> +#include <sys/arch/regs.h> namespace Debug { |