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