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