diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-29 08:49:41 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-29 08:49:41 +0200 |
| commit | fde8a1ab65d5e33d90123a3aaa9b5c15e249689f (patch) | |
| tree | 14134c0c2f322cbcba0989b78bd7057f76c157c3 /src/libs/stdio.hpp | |
| parent | 067d6e340be698b0e26b7732215a1969e0e683f3 (diff) | |
Debug, add memory print driver
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* |
