summaryrefslogtreecommitdiff
path: root/kernel/lib/kprintf.c
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-08 10:47:10 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-08 10:47:10 -0400
commit5372fc3bfdec1485214cb09f2b519223937d8a24 (patch)
tree6a499d11db8191c0a7dd38171aef65addbaf2639 /kernel/lib/kprintf.c
parentremove README (diff)
downloadcomus-5372fc3bfdec1485214cb09f2b519223937d8a24.tar.gz
comus-5372fc3bfdec1485214cb09f2b519223937d8a24.tar.bz2
comus-5372fc3bfdec1485214cb09f2b519223937d8a24.zip
tty => term
Diffstat (limited to 'kernel/lib/kprintf.c')
-rw-r--r--kernel/lib/kprintf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/lib/kprintf.c b/kernel/lib/kprintf.c
index a76036f..40cf819 100644
--- a/kernel/lib/kprintf.c
+++ b/kernel/lib/kprintf.c
@@ -1,6 +1,6 @@
#include <lib.h>
#include <comus/drivers/uart.h>
-#include <comus/drivers/tty.h>
+#include <comus/drivers/term.h>
#define PRINTF_NUMERIC_BUF_LEN 50
@@ -565,12 +565,12 @@ size_t kvsnprintf(char *restrict s, size_t maxlen, const char *format,
void kputc(char c)
{
- tty_out(c);
+ term_out(c);
uart_out(c);
}
void kputs(const char *str)
{
- tty_out_str(str);
+ term_out_str(str);
uart_out_str(str);
}