diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-21 18:54:50 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-21 18:54:50 +0200 |
| commit | 99019721a9e147c49becc466c5427609b937aca8 (patch) | |
| tree | 3b187d90bdb606a9c27760cd6e187aeb995fd956 /src/libs/stdio.hpp | |
| parent | 2f712d027b38bebd571e4fa673f0d642b59e3c98 (diff) | |
Enable interrupts
Diffstat (limited to 'src/libs/stdio.hpp')
| -rw-r--r-- | src/libs/stdio.hpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/libs/stdio.hpp b/src/libs/stdio.hpp index fd266a5..804796b 100644 --- a/src/libs/stdio.hpp +++ b/src/libs/stdio.hpp @@ -8,7 +8,7 @@ extern void (*__putchar)(char); /** * Print a char* in the framebuffer */ -void printk(char *,...); +extern "C" void printk(char *,...); /** * Print a char* @@ -16,11 +16,6 @@ void printk(char *,...); void print(char *s); /** - * Print a char in the framebuffer - */ -void printc(char *, VIDEO_COLORS c); - -/** * Print an integer using itoa() */ void printi(int i); @@ -30,7 +25,3 @@ void printi(int i); */ void printh(int h); -/** - * Print an integer as hex using itoh() truncated to size - */ -void printh(int h, u32 size); |
