diff options
Diffstat (limited to 'debug.c')
| -rw-r--r-- | debug.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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); } + |
