ref: 9c4c13bcccfc42136fe7650d0e905301268cb3f2 dir: /src/libc/stdio/putchar.c/
#include <stdio.h> #undef putchar int putchar(int ch) { return putc(ch, stdout); }