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