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