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