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