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