diff options
Diffstat (limited to 'src/libs/stdio.hpp')
| -rw-r--r-- | src/libs/stdio.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/stdio.hpp b/src/libs/stdio.hpp index 1fbc80a..32e6d94 100644 --- a/src/libs/stdio.hpp +++ b/src/libs/stdio.hpp @@ -1,6 +1,6 @@ #pragma once -#include "drivers/vga_t.hpp" +#include "core/types.hpp" /// @brief Current active framebuffer driver extern void (*__putchar)(char); @@ -8,7 +8,7 @@ extern void (*__putchar)(char); /** * Print a char* in the framebuffer */ -extern "C" void printk(char *,...); +extern "C" void printf(char *,...); /** * Print a char* |
