diff options
| author | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-11-29 11:55:47 +0100 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-11-29 11:57:20 +0100 |
| commit | d36487d9fd2c19b54a3b97bdf3562a17184711fe (patch) | |
| tree | 63c6d641925e7a78a9cb9ff89562c26b77b2bf3b /kernel/include/libk/stdio.h | |
| parent | 450b9160fdcdb0b770b316caf1d72ab893bc7aa5 (diff) | |
kernel panic
Diffstat (limited to 'kernel/include/libk/stdio.h')
| -rw-r--r-- | kernel/include/libk/stdio.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/include/libk/stdio.h b/kernel/include/libk/stdio.h index fc7b8e8..64d16f1 100644 --- a/kernel/include/libk/stdio.h +++ b/kernel/include/libk/stdio.h @@ -3,13 +3,11 @@ #include <types.h> -extern uint32_t curr_x; -extern uint32_t curr_y; - void print_char(char c); void print_string(const char* s); void print_int(uint64_t num); void print_hex(uint64_t num); void printf(const char *s, ...); +void vprintf(const char *s, va_list list); #endif |
