plan9front/sys/src/libstdio/fgetc.c

8 lines
88 B
C

/*
* pANS stdio -- fgetc
*/
#include "iolib.h"
int fgetc(FILE *f){
return getc(f);
}