Subversion Repositories planix.SVN

Rev

Blame | Last modification | View Log | RSS feed

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