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