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