diff options
author | Anton Kling <anton@kling.gg> | 2024-06-28 21:44:31 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-28 21:44:31 +0200 |
commit | f61ce73b5a480fc6b8ded0db86882fe304f17d77 (patch) | |
tree | 851c2a9d0ea24f8e117e2d2148996e526bf98186 /kernel/libc/stdio | |
parent | 2bf9c84e110ff4bd163f0e395929c5df4bc85d2e (diff) |
Bug fixes
Diffstat (limited to 'kernel/libc/stdio')
-rw-r--r-- | kernel/libc/stdio/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |