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