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