1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:47:35 +00:00

Kernel: Move kmalloc() into a Kernel/Heap/ directory

This commit is contained in:
Andreas Kling 2019-09-16 09:01:44 +02:00
parent 6557a31049
commit 1c692e87a6
11 changed files with 14 additions and 16 deletions

View file

@ -1,7 +1,7 @@
#include "VirtualConsole.h"
#include "IO.h"
#include "StdLib.h"
#include "kmalloc.h"
#include <Kernel/Heap/kmalloc.h>
#include <AK/String.h>
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Devices/KeyboardDevice.h>