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