diff options
Diffstat (limited to 'lib/io/io.c')
| -rw-r--r-- | lib/io/io.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/io/io.c b/lib/io/io.c index 57cfd05..2aefe1a 100644 --- a/lib/io/io.c +++ b/lib/io/io.c @@ -27,6 +27,11 @@ void wf(unsigned int fd, char *buf) } +void putchar(const char c) +{ + __wstdn(&c, 1); +} + void wstdf__(const char *buf, const void **args) { wff__(STDOUT_FD, buf, args); |