plan9front/sys/src/libstdio/getc.c

9 lines
99 B
C

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