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