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