Include the main kernel header in some kernel files.

This commit is contained in:
Jonas 'Sortie' Termansen 2022-04-25 23:11:03 +02:00
parent a0a4030dd3
commit 0f0c6a3232
4 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,7 @@
#include <sortix/kblayout.h>
#include <sortix/kernel/log.h>
#include <sortix/kernel/kernel.h>
#include "kblayout.h"

View File

@ -23,6 +23,7 @@
#include <sortix/keycodes.h>
#include <sortix/kernel/kernel.h>
#include <sortix/kernel/keyboard.h>
#include <sortix/kernel/ps2.h>
#include <sortix/kernel/kthread.h>

View File

@ -26,6 +26,7 @@
#include <sortix/stat.h>
#include <sortix/kernel/ioctx.h>
#include <sortix/kernel/kernel.h>
#include <sortix/kernel/kthread.h>
#include <sortix/kernel/ps2.h>

View File

@ -19,6 +19,8 @@
#include <stdarg.h>
#include <string.h>
#include <sortix/kernel/kernel.h>
#include <sortix/kernel/string.h>
namespace Sortix {