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