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