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