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