ref: 529aa2c1a043342c4be06a16048753fc21eee23e dir: /src/libc/stdio/fputc.c/
#include <stdio.h> #undef fputc int fputc(int c, FILE *fp) { return putc(c, fp); }