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