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