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