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