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