summaryrefslogtreecommitdiff
path: root/beos/beosish.h
blob: 7aab15f4022651bbc0d36db0307e8dae5e54885e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef PERL_BEOS_BEOSISH_H
#define PERL_BEOS_BEOSISH_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);

/* flock support, if available */
#ifdef HAS_FLOCK

#include <flock.h>

#undef close
#define close flock_close

#undef dup2
#define dup2 flock_dup2

#endif /* HAS_FLOCK */


#undef kill
#define kill beos_kill
int beos_kill(pid_t pid, int sig);

#undef sigaction
#define sigaction(sig, act, oact) beos_sigaction((sig), (act), (oact))
int beos_sigaction(int sig, const struct sigaction *act,
                   struct sigaction *oact);

#endif