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