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