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