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