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