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

Kernel: Remove two unneeded headers.

This commit is contained in:
Andreas Kling 2019-04-10 22:49:11 +02:00
parent d8e1545783
commit 0bc72551f4
7 changed files with 15 additions and 44 deletions

View file

@ -1,8 +1,8 @@
#include "kprintf.h"
#include "Console.h"
#include "IO.h"
#include <Kernel/kstdio.h>
#include <Kernel/Console.h>
#include <Kernel/IO.h>
#include <LibC/stdarg.h>
#include "Process.h"
#include <Kernel/Process.h>
#include <AK/Types.h>
#include <AK/printf.cpp>