From dfe9444ca7881e716e9e8feaf20b55da491363ca Mon Sep 17 00:00:00 2001 From: Andy Dougherty Date: Tue, 24 Feb 1998 11:02:43 -0500 Subject: Re: ANNOUNCE: perl5.004_60 Configure patch is available p4raw-id: //depot/perl@575 --- pp.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'pp.c') diff --git a/pp.c b/pp.c index 2512979170..4264e9b8a1 100644 --- a/pp.c +++ b/pp.c @@ -105,12 +105,16 @@ static bool srand_called = FALSE; /* variations on pp_null */ -#ifdef DONT_DECLARE_STD #ifdef I_UNISTD #include #endif -#else -extern pid_t getpid (void); + +/* XXX I can't imagine anyone who doesn't have this actually _needs_ + it, since pid_t is an integral type. + --AD 2/20/1998 +*/ +#ifdef NEED_GETPID_PROTO +extern Pid_t getpid (void); #endif PP(pp_stub) -- cgit v1.2.1