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