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