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