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