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