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