diff options
author | Anton Kling <anton@kling.gg> | 2024-06-17 22:07:38 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-17 22:07:38 +0200 |
commit | f209faffab90186cd88cd0a2fe2cc6236bb53e15 (patch) | |
tree | 68194363c25900f5d349c8ae34d42be9ae638df8 /kernel/libc/include | |
parent | 08d0b7eee74b9f345241faad460d145bb0454736 (diff) |
Reorganize logging code
Diffstat (limited to 'kernel/libc/include')
-rw-r--r-- | kernel/libc/include/stdio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/libc/include/stdio.h b/kernel/libc/include/stdio.h index f2bbb32..9dd496e 100644 --- a/kernel/libc/include/stdio.h +++ b/kernel/libc/include/stdio.h @@ -1,9 +1,10 @@ #ifndef STDIO_H #define STDIO_H +#include <stdarg.h> void putc(const char c); -int puts(char *str); void delete_characther(void); int kprintf(const char *format, ...); +int vkprintf(const char *format, va_list list); #endif |