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