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