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