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