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