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