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