Subversion Repositories planix.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
/*
2
 * pANS stdio -- getc
3
 */
4
#include "iolib.h"
5
#undef getc
6
int getc(FILE *f){
7
	return fgetc(f);
8
}