1 #ifndef PERL_BEOS_BEOSISH_H
2 #define PERL_BEOS_BEOSISH_H
4 #include "../unixish.h"
7 #define waitpid beos_waitpid
9 pid_t beos_waitpid(pid_t process_id, int *status_location, int options);
11 /* This seems to be protoless. */
12 char *gcvt(double value, int num_digits, char *buffer);
14 /* flock support, if available */
20 #define close flock_close
23 #define dup2 flock_dup2
25 #endif /* HAS_FLOCK */
29 #define kill beos_kill
30 int beos_kill(pid_t pid, int sig);
33 #define sigaction(sig, act, oact) beos_sigaction((sig), (act), (oact))
34 int beos_sigaction(int sig, const struct sigaction *act,
35 struct sigaction *oact);