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