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