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