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