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