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