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