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