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