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