1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:47:36 +00:00

Kernel: Replace includes with a forward declaration

This commit is contained in:
James Mintram 2021-10-13 20:00:25 +01:00 committed by Linus Groh
parent baa7925c0c
commit 580006d784

View file

@ -8,12 +8,10 @@
#include <AK/Types.h>
#include <Kernel/Arch/x86/InterruptDisabler.h>
#include <Kernel/Arch/x86/Processor.h>
#include <Kernel/Arch/x86/RegisterState.h>
namespace Kernel {
struct RegisterState;
struct TrapFrame {
FlatPtr prev_irq_level;
TrapFrame* next_trap;