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