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