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