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