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