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