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