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