rudimentary console
[3sys] / sys1 / kern / src / libc / stdio.c
index 2035cf8..3c2d61e 100644 (file)
@@ -1,6 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
+#include "con.h"
 
 enum {
        OUT_DEF,
@@ -13,7 +14,7 @@ static void bwrite(int out, char *buf, size_t buf_sz, char *str, int sz);
 
 int putchar(int c)
 {
-       /*con_putchar(c);*/
+       con_putchar(c);
        return c;
 }