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