From 5372fc3bfdec1485214cb09f2b519223937d8a24 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 8 Apr 2025 10:47:10 -0400 Subject: tty => term --- kernel/lib/kprintf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kernel/lib') 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 #include -#include +#include #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); } -- cgit v1.2.3-freya