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