summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authorAstrid Smith2011-10-31 00:26:51 -0700
committerAstrid Smith2011-10-31 00:26:51 -0700
commit58df7c903d62772c06ac5c8b1cc94d2f588953d1 (patch)
tree64d9b1db1157fd5f93ad5de1f4a62251f5f591f0 /debug.c
parent555a832a8d8a26e81343ea059cbd39047134d864 (diff)
License clarification
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);
}
+