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