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