diff options
author | Marvin Borner | 2019-12-21 22:22:03 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-21 22:22:03 +0100 |
commit | 499784a824c541001c2fd52ae95eba88dcfc952b (patch) | |
tree | c3c26d7c8a3b9291d909f4655b7d27a5ae2369bc /src/kernel/lib/stdio.h | |
parent | 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff) |
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'src/kernel/lib/stdio.h')
-rw-r--r-- | src/kernel/lib/stdio.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/kernel/lib/stdio.h b/src/kernel/lib/stdio.h index d102dd6..8299dea 100644 --- a/src/kernel/lib/stdio.h +++ b/src/kernel/lib/stdio.h @@ -9,8 +9,10 @@ char *readline(); void writec(char c); -void vprintf(const char *format, va_list args); +void vprintf(const char *fmt, va_list args); -void printf(const char *format, ...); +void printf(const char *fmt, ...); + +void serial_printf(const char *fmt, ...); #endif |