From d07bd08dd0446e8c41eccaccbb07e9112200e8ee Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Sun, 24 May 2026 11:09:31 +0000 Subject: rename and move, function renames in stdio --- kc/core/kstdio.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 kc/core/kstdio.c (limited to 'kc/core/kstdio.c') diff --git a/kc/core/kstdio.c b/kc/core/kstdio.c deleted file mode 100644 index 680eb07..0000000 --- a/kc/core/kstdio.c +++ /dev/null @@ -1,18 +0,0 @@ -#include "serial.h" -#include "video.h" - -#include -#include - -#include -#include - -FILE *kstdout; - -int kfputc(int c, FILE *f) -{ - (void)f; - video_putchar(c); - return serial_putchar(c); -} - -- cgit v1.3.1-1-g115d