*** empty log message ***

This commit is contained in:
Bill Hoffman 2002-11-12 09:33:00 -05:00
parent 56d4bba759
commit 59d623dc66
1 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,11 @@ int main(int, char*[])
}
while(!feof(file))
{
putc(fgetc(file), stdout);
int ch = fgetc(file);
if(ch != EOF)
{
putc(ch, stdout);
}
}
fclose(file);
return 0;