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