From 99019721a9e147c49becc466c5427609b937aca8 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Wed, 21 Apr 2021 18:54:50 +0200 Subject: Enable interrupts --- src/libs/stdio.hpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'src/libs/stdio.hpp') 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,18 +8,13 @@ extern void (*__putchar)(char); /** * Print a char* in the framebuffer */ -void printk(char *,...); +extern "C" void printk(char *,...); /** * Print a char* */ void print(char *s); -/** - * Print a char in the framebuffer - */ -void printc(char *, VIDEO_COLORS c); - /** * Print an integer using itoa() */ @@ -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); -- cgit v1.2.3