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