Files
2010-07-27 16:58:17 +00:00

9 lines
73 B
C

#include <stdio.h>
#undef getc
int getc(FILE *s)
{
return fgetc(s);
}