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