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