summaryrefslogtreecommitdiff
path: root/src/stdio/freopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/freopen.c')
-rw-r--r--src/stdio/freopen.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/stdio/freopen.c b/src/stdio/freopen.c
index 958dbd20..b1f8fe71 100644
--- a/src/stdio/freopen.c
+++ b/src/stdio/freopen.c
@@ -32,7 +32,6 @@ FILE *freopen(const char *filename, const char *mode, FILE *f)
f->write = f2->write;
f->seek = f2->seek;
f->close = f2->close;
- f->flush = f2->flush;
fclose(f2);
return f;