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