aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio
diff options
context:
space:
mode:
authorMarvin Borner2020-01-20 23:12:54 +0100
committerMarvin Borner2020-01-20 23:12:54 +0100
commit391ed256d21a6ae2e2456d1809f357e6e96e15d1 (patch)
tree0fe9ffb3c59bbfeb3d8a04ab7fc6efba60d81e79 /src/kernel/lib/stdio
parentd5d1749257ff8b9aa6b5ace4b4720b484a2860f3 (diff)
Added pure awesomeness
Actually quite some days of work but ok
Diffstat (limited to 'src/kernel/lib/stdio')
-rw-r--r--src/kernel/lib/stdio/debug.c1
-rw-r--r--src/kernel/lib/stdio/vprintf.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/kernel/lib/stdio/debug.c b/src/kernel/lib/stdio/debug.c
index d66ee59..f670588 100644
--- a/src/kernel/lib/stdio/debug.c
+++ b/src/kernel/lib/stdio/debug.c
@@ -3,6 +3,7 @@
#include <kernel/lib/string.h>
#include <kernel/lib/stdlib.h>
#include <kernel/io/io.h>
+#include <kernel/memory/kheap.h>
void _write_serial(const char *data)
{
diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c
index 81b7be0..72f3917 100644
--- a/src/kernel/lib/stdio/vprintf.c
+++ b/src/kernel/lib/stdio/vprintf.c
@@ -3,6 +3,7 @@
#include <kernel/lib/stdio.h>
#include <kernel/lib/string.h>
#include <kernel/lib/stdlib.h>
+#include <kernel/memory/kheap.h>
void _writes(const char *data)
{