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