From: Craig A. Berry Date: Mon, 23 Jul 2001 15:35:06 +0000 (-0500) Subject: util.c: return required in Perl_my_fork X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b961a5663ff8cf4b987118f593328773ddc9819c;p=p5sagit%2Fp5-mst-13.2.git util.c: return required in Perl_my_fork Message-Id: <5.1.0.14.0.20010723152732.02ad4470@exchi01> p4raw-id: //depot/perl@11455 --- diff --git a/util.c b/util.c index 5262e6a..a88c25d 100644 --- a/util.c +++ b/util.c @@ -2160,6 +2160,7 @@ Perl_my_fork(void) #else /* this "canna happen" since nothing should be calling here if !HAS_FORK */ Perl_croak_nocontext("fork() not available"); + return 0; #endif /* HAS_FORK */ }