diff options
author | Marvin Borner | 2020-05-02 15:44:11 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-02 15:44:11 +0200 |
commit | aa8a8811818331cf511681327e3ba95e456f0d33 (patch) | |
tree | 852c314dae76e756863f94639ff45eff72834d5d /src/userspace/libc/stdio/putch.c | |
parent | 2a0e810a473dea57fd1cd53ea424b61269c029ba (diff) |
Added many syscalls to get better POSIX compliance
Diffstat (limited to 'src/userspace/libc/stdio/putch.c')
-rw-r--r-- | src/userspace/libc/stdio/putch.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/userspace/libc/stdio/putch.c b/src/userspace/libc/stdio/putch.c index 3bc5a2e..f87680e 100644 --- a/src/userspace/libc/stdio/putch.c +++ b/src/userspace/libc/stdio/putch.c @@ -2,6 +2,7 @@ void putch(char ch) { - if (ch != 0) - syscall_putch(ch); + // TODO: Implement framebuffer writing + //if (ch != 0) + //syscall_putch(ch); }
\ No newline at end of file |