diff options
Diffstat (limited to 'kernel/libc/stdio/print.c')
-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); } |