diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-21 17:31:26 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-21 17:31:26 +0000 |
commit | e2dbf22206a381bd04a6ae9005ee03b61db9ab2f (patch) | |
tree | b85fe5c419664ea421d93c2071cafe6cc77b17f9 /perl.h | |
parent | 6ab3f9cbae5dd948ef8a282cb3f9a626e7571423 (diff) | |
download | perl-e2dbf22206a381bd04a6ae9005ee03b61db9ab2f.tar.gz |
fix breakage when neither FFLUSH_ALL nor FFLUSH_NULL are #defined.
(Configure fflush(NULL) detection seems broken on Solaris, which
is why I hit the problem)
p4raw-id: //depot/perl@3439
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1466,6 +1466,8 @@ typedef pthread_key_t perl_key; # else # ifdef FFLUSH_ALL # define PERL_FLUSHALL_FOR_CHILD my_fflush_all() +# else +# define PERL_FLUSHALL_FOR_CHILD (void)0 # endif # endif #endif |