Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* pANS stdio -- fgetc
*/
#include "iolib.h"
int fgetc(FILE *f){
return getc(f);
}