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