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