summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-05 14:08:20 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-05 14:08:20 +0200
commit457277095a087362e613c942dc8b47c1372cfc37 (patch)
tree6622919685ee15532fb481bb3d8268541c41c467 /src
parentc55bc80baa51dc1028cbbae8a02540cfe4c56557 (diff)
downloadabaos-457277095a087362e613c942dc8b47c1372cfc37.tar.gz
abaos-457277095a087362e613c942dc8b47c1372cfc37.tar.bz2
tried to fix libc tests, currently they draw in too many dependencies
and don't link. We have to separate libc better from the rest of the kernel code (kernel_panic, libc library initializers)
Diffstat (limited to 'src')
-rw-r--r--src/gui/graphics_context.h2
-rw-r--r--src/kernel/kernel.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/graphics_context.h b/src/gui/graphics_context.h
index 9a3c7b4..ba08273 100644
--- a/src/gui/graphics_context.h
+++ b/src/gui/graphics_context.h
@@ -1,7 +1,7 @@
#ifndef GRAPHICS_CONTEXT_H
#define GRAPHICS_CONTEXT_H
-#include "drivers/video/vga.h"
+#include "vga.h"
typedef vga_t graphics_context_t;
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index a6594f6..a789139 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -18,7 +18,7 @@
#include "kernel.h"
// TODO: move away from main!
-#include "drivers/video/vga.h"
+#include "vga.h"
#include "graphics_context.h"
#include "widget.h"
#include "composite_widget.h"