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 /include | |
parent | 39b8db42c6660abaa161acb6064093fc8f00f7f5 (diff) |
io: prefix a 'k' to print functions
Add a 'k' prefix to the kernel versions of the printf family.
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel/io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kernel/io.h b/include/kernel/io.h index 486c7a4..8f5fa59 100644 --- a/include/kernel/io.h +++ b/include/kernel/io.h @@ -3,7 +3,7 @@ #include <stdarg.h> -int vprintf(const char *fmt, va_list args); -int printf(const char *fmt, ...); +int vkprintf(const char *fmt, va_list args); +int kprintf(const char *fmt, ...); #endif |