summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-05-21 17:31:26 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-05-21 17:31:26 +0000
commite2dbf22206a381bd04a6ae9005ee03b61db9ab2f (patch)
treeb85fe5c419664ea421d93c2071cafe6cc77b17f9 /perl.h
parent6ab3f9cbae5dd948ef8a282cb3f9a626e7571423 (diff)
downloadperl-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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index e9eb909785..f075f3aa80 100644
--- a/perl.h
+++ b/perl.h
@@ -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