about summary refs log tree commit diff
path: root/src/pOS/arch/x86/libc/stdio/putc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pOS/arch/x86/libc/stdio/putc.cpp')
-rw-r--r--src/pOS/arch/x86/libc/stdio/putc.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pOS/arch/x86/libc/stdio/putc.cpp b/src/pOS/arch/x86/libc/stdio/putc.cpp
new file mode 100644
index 0000000..ce01839
--- /dev/null
+++ b/src/pOS/arch/x86/libc/stdio/putc.cpp
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int putc(const char c)
+{
+    return TTY::tty_putc(c);
+}