From f61ce73b5a480fc6b8ded0db86882fe304f17d77 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 28 Jun 2024 21:44:31 +0200 Subject: Bug fixes --- kernel/libc/stdio/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/libc') diff --git a/kernel/libc/stdio/print.c b/kernel/libc/stdio/print.c index b432364..eedf026 100644 --- a/kernel/libc/stdio/print.c +++ b/kernel/libc/stdio/print.c @@ -9,7 +9,7 @@ inline void putc(const char c) { write_serial(c); } -inline void put_string(const char *s, int l) { +void put_string(const char *s, int l) { for (; l > 0; l--, s++) { write_serial(*s); } -- cgit v1.2.3