summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-12-11 15:53:41 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-11 15:53:41 +0000
commit531c60d54ac0c8d986882963cc1cc6a92c370a4f (patch)
tree875388bab63efe4c5e1175201befbdf17d0f1928 /beos
parentefca5cc673562689e514ffff7cdd6f79da683149 (diff)
downloadperl-531c60d54ac0c8d986882963cc1cc6a92c370a4f.tar.gz
The unixish.h needs to be found and the waitpid wrapper
could use a proto. p4raw-id: //depot/perl@13625
Diffstat (limited to 'beos')
-rw-r--r--beos/beosish.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/beos/beosish.h b/beos/beosish.h
index 4c999daa0d..66de1104b2 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);