ref: 76daf9f863868356f9c59eadc93ed4d2454dc72d dir: /sys/src/libstdio/fgetc.c/
/* * pANS stdio -- fgetc */ #include "iolib.h" int fgetc(FILE *f){ return getc(f); }