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