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