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