summaryrefslogtreecommitdiff
path: root/kernel/libc
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-06-28 21:44:31 +0200
committerAnton Kling <anton@kling.gg>2024-06-28 21:44:31 +0200
commitf61ce73b5a480fc6b8ded0db86882fe304f17d77 (patch)
tree851c2a9d0ea24f8e117e2d2148996e526bf98186 /kernel/libc
parent2bf9c84e110ff4bd163f0e395929c5df4bc85d2e (diff)
Bug fixes
Diffstat (limited to 'kernel/libc')
-rw-r--r--kernel/libc/stdio/print.c2
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);
}