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