This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
#21866 was wrong. another try to plumb that damn leak.
[perl5.git] / beos / beosish.h
CommitLineData
efca5cc6
JH
1#ifndef PERL_BEOS_BEOSISH_H
2#define PERL_BEOS_BEOSISH_H
3
531c60d5 4#include "../unixish.h"
efca5cc6
JH
5
6#undef waitpid
7#define waitpid beos_waitpid
8
531c60d5
JH
9pid_t beos_waitpid(pid_t process_id, int *status_location, int options);
10
efca5cc6
JH
11/* This seems to be protoless. */
12char *gcvt(double value, int num_digits, char *buffer);
13
14#endif
15