diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-11 15:27:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-11 15:27:06 +0000 |
commit | efca5cc673562689e514ffff7cdd6f79da683149 (patch) | |
tree | 9977a9f8d2ac57daf4b2eccd97040b786cbd35af /beos/beosish.h | |
parent | 19848b3fa09ce050a4be1811af91c3670de2759e (diff) | |
download | perl-efca5cc673562689e514ffff7cdd6f79da683149.tar.gz |
The BeOS waitpid() seems to be broken,
have a wrapper for it.
p4raw-id: //depot/perl@13624
Diffstat (limited to 'beos/beosish.h')
-rw-r--r-- | beos/beosish.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/beos/beosish.h b/beos/beosish.h new file mode 100644 index 0000000000..4c999daa0d --- /dev/null +++ b/beos/beosish.h @@ -0,0 +1,13 @@ +#ifndef PERL_BEOS_BEOSISH_H +#define PERL_BEOS_BEOSISH_H + +#include "unixish.h" + +#undef waitpid +#define waitpid beos_waitpid + +/* This seems to be protoless. */ +char *gcvt(double value, int num_digits, char *buffer); + +#endif + |