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