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
commit 425195e93f
Notes: sideshowbarker 2024-07-18 09:16:06 +09:00
11 changed files with 15 additions and 15 deletions

View file

@ -4,10 +4,10 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "MemoryDevice.h"
#include <AK/Memory.h>
#include <AK/StdLibExtras.h>
#include <Kernel/Arch/PC/BIOS.h>
#include <Kernel/Devices/MemoryDevice.h>
#include <Kernel/Sections.h>
#include <Kernel/VM/AnonymousVMObject.h>