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