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