diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-07-20 20:25:29 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-07-20 20:25:29 -0500 |
commit | efad89a1b70e265c3706662a8392fd1164c06bd7 (patch) | |
tree | 63eaf012353a56bb337572b978af6872bad8628a /kernel/init.c | |
parent | Makefile: clean up targets (diff) | |
download | box-efad89a1b70e265c3706662a8392fd1164c06bd7.tar.gz box-efad89a1b70e265c3706662a8392fd1164c06bd7.tar.zst box-efad89a1b70e265c3706662a8392fd1164c06bd7.zip |
io: prefix a 'k' to print functions
Add a 'k' prefix to the kernel versions of the printf family.
Diffstat (limited to '')
-rw-r--r-- | kernel/init.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/init.c b/kernel/init.c index a7a71d6..195ce92 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -4,7 +4,5 @@ void kernel_main(void) { tty_init(); - serial_init(); - serial_writestring("Hello world\n"); - printf("Hello world\n"); + kprintf("Hello world\n"); } |