summaryrefslogtreecommitdiff
path: root/Userland/Applications/Debugger/main.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-04 05:39:57 +0300
committerAndreas Kling <kling@serenityos.org>2022-12-28 11:53:41 +0100
commit85b453c2e4301dcabd76074191a27e41d1681e04 (patch)
tree62b8c3469b41ca9d36a004c0ded4bac5de575740 /Userland/Applications/Debugger/main.cpp
parent445b5e1e9419b83ee93c7d2f11de00fd644ad86c (diff)
downloadserenity-85b453c2e4301dcabd76074191a27e41d1681e04.zip
Kernel+Userland: Remove dependency on i386-specific registers
Diffstat (limited to 'Userland/Applications/Debugger/main.cpp')
-rw-r--r--Userland/Applications/Debugger/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Debugger/main.cpp b/Userland/Applications/Debugger/main.cpp
index eab199ca95..1eba7028ad 100644
--- a/Userland/Applications/Debugger/main.cpp
+++ b/Userland/Applications/Debugger/main.cpp
@@ -11,7 +11,7 @@
#include <AK/Platform.h>
#include <AK/StringBuilder.h>
#include <AK/Try.h>
-#include <LibC/sys/arch/i386/regs.h>
+#include <LibC/sys/arch/regs.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/System.h>
#include <LibDebug/DebugInfo.h>