diff options
Diffstat (limited to 'kc/core/kstdio.c')
| -rw-r--r-- | kc/core/kstdio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kc/core/kstdio.c b/kc/core/kstdio.c index 1d0bfa9..680eb07 100644 --- a/kc/core/kstdio.c +++ b/kc/core/kstdio.c @@ -1,4 +1,5 @@ #include "serial.h" +#include "video.h" #include <stdint.h> #include <stdbool.h> @@ -11,6 +12,7 @@ FILE *kstdout; int kfputc(int c, FILE *f) { (void)f; + video_putchar(c); return serial_putchar(c); } |
