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