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