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