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