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