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