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