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