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