summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index b98e4f6..ae760a9 100644
--- a/debug.c
+++ b/debug.c
@@ -6,9 +6,16 @@
* GPL
*/
-#include <stdio.h>
+//#include <stdio.h>
+
+short putchar(short c)
+{
+ return c;
+}
+
void char_draw(char c)
{
putchar((short)c);
}
+