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