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