summaryrefslogtreecommitdiff
path: root/kc/core/kstdio.c
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2026-05-24 11:09:31 +0000
committerAda Christine <adachristine18@gmail.com>2026-05-24 11:09:31 +0000
commitd07bd08dd0446e8c41eccaccbb07e9112200e8ee (patch)
tree742a3f9d9d84c8ee55858b2ebc7e0e0f8c714c7c /kc/core/kstdio.c
parent9aaf21bf10d00ec12b24499817e3e91dca08c461 (diff)
rename and move, function renames in stdio
Diffstat (limited to 'kc/core/kstdio.c')
-rw-r--r--kc/core/kstdio.c18
1 files changed, 0 insertions, 18 deletions
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 <stdint.h>
-#include <stdbool.h>
-
-#include <lib/kstdio.h>
-#include <lib/kstring.h>
-
-FILE *kstdout;
-
-int kfputc(int c, FILE *f)
-{
- (void)f;
- video_putchar(c);
- return serial_putchar(c);
-}
-