diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2002-12-18 23:12:14 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2002-12-18 23:12:14 +0000 |
commit | f800e14d03e1bfa2cf42b86e56c0183cd5875618 (patch) | |
tree | 9eca5b2c5cac882b61f7431d7abbb775ea7131b8 /util.c | |
parent | c67773d0c9c360a2a93d7e99edf5825f76a431d3 (diff) | |
download | perl-f800e14d03e1bfa2cf42b86e56c0183cd5875618.tar.gz |
my_fflush_all() wasn't doing the right thing under useperlio
on many platforms
p4raw-id: //depot/perl@18335
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2985,7 +2985,7 @@ Perl_get_vtbl(pTHX_ int vtbl_id) I32 Perl_my_fflush_all(pTHX) { -#if defined(FFLUSH_NULL) +#if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO) return PerlIO_flush(NULL); #else # if defined(HAS__FWALK) |