mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
*** empty log message ***
This commit is contained in:
parent
56d4bba759
commit
59d623dc66
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user