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