1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

Kernel: Standardize the header include style to 'include <Kernel/...>'

This is the overwhelming standard in the project, but there were some
cases in the kernel which were not following it, lets fix those cases!
This commit is contained in:
Brian Gianforcaro 2021-07-11 12:02:15 -07:00 committed by Andreas Kling
parent 6f408e7f0d
commit 425195e93f
11 changed files with 15 additions and 15 deletions

View file

@ -6,7 +6,6 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "VirtualConsole.h"
#include <AK/StdLibExtras.h>
#include <AK/String.h>
#include <Kernel/Debug.h>
@ -17,6 +16,7 @@
#include <Kernel/Sections.h>
#include <Kernel/StdLib.h>
#include <Kernel/TTY/ConsoleManagement.h>
#include <Kernel/TTY/VirtualConsole.h>
#include <LibVT/Color.h>
namespace Kernel {