summaryrefslogtreecommitdiff
path: root/kernel/kernel.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-13 00:35:06 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-13 00:35:06 +0100
commitb126d01e9687e6509c9d49b1b174c95aee603a89 (patch)
treefe05187f4f9c28ef65bf530116c20c05f1a679b8 /kernel/kernel.c
parente3c4f3b03aa77ea19ddf7d982d39871dbdc018c0 (diff)
fixing implicit functions!
Diffstat (limited to 'kernel/kernel.c')
-rw-r--r--kernel/kernel.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c
index 7cafc49..45fc68c 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -1,14 +1,26 @@
#define FOOLOS_MODULE_NAME "kernel"
#include "config.h"
+#include "asm/asm.h"
#include "lib/logger/log.h"
#include "lib/int/stdint.h"
#include "lib/bool/bool.h"
+#include "lib/buffer/ringbuffer.h"
#include "smp.h"
#include "time.h"
+#include "timer.h"
+#include "spinlock.h"
+#include "syscalls.h"
+#include "mem.h"
+#include "vesa.h"
+#include "interrupts.h"
+#include "acpi.h"
+#include "mp.h"
+#include "keyboard.h"
#include "fs/fs.h"
+#include "fs/ext2.h"
#ifdef FOOLOS_COMPILE_FLOPPY
#include "floppy.h"