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