aboutsummaryrefslogtreecommitdiff
path: root/src/libs/stdio.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/stdio.hpp')
-rw-r--r--src/libs/stdio.hpp11
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);