ref: fcc4d827f855bae3c6e3f1fb7eaaec326bc4765c dir: /lib/c/fgetc.c/
#include <stdio.h> #undef fgetc int fgetc(FILE *fp) { return getc(fp); }