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