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