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