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