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