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