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