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