aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_putch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_putch.c')
-rw-r--r--src/kernel/syscall/actions/sys_putch.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/kernel/syscall/actions/sys_putch.c b/src/kernel/syscall/actions/sys_putch.c
deleted file mode 100644
index beaa4a2..0000000
--- a/src/kernel/syscall/actions/sys_putch.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdint.h>
-#include <kernel/lib/stdio.h>
-#include <kernel/lib/string.h>
-
-uint32_t sys_putch(char ch)
-{
- putch(ch);
- return 0;
-} \ No newline at end of file