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