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