diff options
Diffstat (limited to 'src/stdio/fflush.c')
-rw-r--r-- | src/stdio/fflush.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/stdio/fflush.c b/src/stdio/fflush.c index 4c1647b7..715c1d10 100644 --- a/src/stdio/fflush.c +++ b/src/stdio/fflush.c @@ -15,9 +15,6 @@ static int __fflush_unlocked(FILE *f) f->wpos = f->wbase = f->wend = 0; f->rpos = f->rend = 0; - /* Hook for special behavior on flush */ - if (f->flush) f->flush(f); - return 0; } |