summaryrefslogtreecommitdiff
path: root/include/kernel/io.h
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-02-16 12:32:40 -0600
committerDanny Holman <dholman@gymli.org>2024-02-16 12:32:40 -0600
commita267b8c076793cf59c2f6c80a31d7d094a215aab (patch)
tree2f73f36ebfd69a8e8709a9ee8434b9bcf57c386c /include/kernel/io.h
parent1d40d14e09c8c22ffbdf5a5cad95ae552587ce53 (diff)
kernel: make kprintf print to a ring buffer
The function kprintf should print to an internal ringbuffer instead of directly to the framebuffer. This reduces dependence on the existence of a framebuffer in the first place. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include/kernel/io.h')
-rw-r--r--include/kernel/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kernel/io.h b/include/kernel/io.h
index 8f5fa59..cf8404a 100644
--- a/include/kernel/io.h
+++ b/include/kernel/io.h
@@ -1,5 +1,5 @@
-#ifndef IO_H
-#define IO_H
+#ifndef KERNEL_IO_H
+#define KERNEL_IO_H
#include <stdarg.h>