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