From: Jarkko Hietaniemi Date: Tue, 11 Dec 2001 15:53:41 +0000 (+0000) Subject: The unixish.h needs to be found and the waitpid wrapper X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=531c60d54ac0c8d986882963cc1cc6a92c370a4f;p=p5sagit%2Fp5-mst-13.2.git The unixish.h needs to be found and the waitpid wrapper could use a proto. p4raw-id: //depot/perl@13625 --- diff --git a/beos/beosish.h b/beos/beosish.h index 4c999da..66de110 100644 --- a/beos/beosish.h +++ b/beos/beosish.h @@ -1,11 +1,13 @@ #ifndef PERL_BEOS_BEOSISH_H #define PERL_BEOS_BEOSISH_H -#include "unixish.h" +#include "../unixish.h" #undef waitpid #define waitpid beos_waitpid +pid_t beos_waitpid(pid_t process_id, int *status_location, int options); + /* This seems to be protoless. */ char *gcvt(double value, int num_digits, char *buffer);