diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-16 12:00:04 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-16 12:00:04 +0200 |
commit | 21d5f4ada1a38cc90ff78a18d141e6477ccef333 (patch) | |
tree | 28cff77ef0ceb49a87ec973b30d76dc0628a1361 /Kernel/TTY/VirtualConsole.h | |
parent | c12cfdea8799b24d2a8c57131e8563ce3dfd66cf (diff) | |
download | serenity-21d5f4ada1a38cc90ff78a18d141e6477ccef333.zip |
Kernel: Absorb LibBareMetal back into the kernel
This was supposed to be the foundation for some kind of pre-kernel
environment, but nobody is working on it right now, so let's move
everything back into the kernel and remove all the confusion.
Diffstat (limited to 'Kernel/TTY/VirtualConsole.h')
-rw-r--r-- | Kernel/TTY/VirtualConsole.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/TTY/VirtualConsole.h b/Kernel/TTY/VirtualConsole.h index 222b86d596..8f6745b81e 100644 --- a/Kernel/TTY/VirtualConsole.h +++ b/Kernel/TTY/VirtualConsole.h @@ -28,7 +28,7 @@ #include <Kernel/Devices/KeyboardDevice.h> #include <Kernel/TTY/TTY.h> -#include <LibBareMetal/Output/Console.h> +#include <Kernel/Console.h> namespace Kernel { |