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