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