]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libstdio/fgetc.c
kernel: clear FPillegal in pexit() and before pprint()
[plan9front.git] / sys / src / libstdio / fgetc.c
1 /*
2  * pANS stdio -- fgetc
3  */
4 #include "iolib.h"
5 int fgetc(FILE *f){
6         return getc(f);
7 }