diff options
Diffstat (limited to 'stdio-common/bug7.c')
-rw-r--r-- | stdio-common/bug7.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stdio-common/bug7.c b/stdio-common/bug7.c index 8a95bf25d4..7b320aebd2 100644 --- a/stdio-common/bug7.c +++ b/stdio-common/bug7.c @@ -42,7 +42,11 @@ main (int argc, char *argv[]) printf ("wrong character in reopened file, value = %d\n", ch); lose = 1; } +#if 0 + /* Hey, how did this ever worked? `file1' is already closed!!! + -- drepper@gnu */ fclose (file1); +#endif fclose (file2); remove (filename1); remove (filename2); |