diff options
Diffstat (limited to 'kernel/libc/include/stdio.h')
-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 |