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