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