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