aboutsummaryrefslogtreecommitdiffstats
path: root/libc/putchar.c
diff options
context:
space:
mode:
authorEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-05 01:08:00 -0400
committerEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-05 01:08:00 -0400
commit4aa74dbe2a35a45668b33d688f17b680c2232572 (patch)
tree42794e2fe2ba653ccbf772bb02dbfda07f75943e /libc/putchar.c
parent2d59766eb330b9d15a9bcbcd7e1695809fc099c5 (diff)
improved makefile somewhat
Diffstat (limited to 'libc/putchar.c')
-rw-r--r--libc/putchar.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/putchar.c b/libc/putchar.c
new file mode 100644
index 0000000..c5a7976
--- /dev/null
+++ b/libc/putchar.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+#include <arch/i386/tmtty.h>
+
+int putchar(int ic) {
+ char c = (char) ic;
+ terminal_write(&c, sizeof(c));
+ return ic;
+} \ No newline at end of file