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