| 11 |
|
#include <errno.h> |
| 12 |
|
#ifdef _WIN32 |
| 13 |
|
#include <windows.h> /* DWORD etc. */ |
| 14 |
+ |
#include <stdio.h> |
| 15 |
|
typedef DWORD pid_t; |
| 16 |
|
#include <process.h> /* getpid() and others */ |
| 17 |
|
#define nice(inc) win_nice(inc) |
| 18 |
+ |
|
| 19 |
+ |
#ifdef __cplusplus |
| 20 |
+ |
extern "C" { |
| 21 |
+ |
#endif |
| 22 |
+ |
extern FILE *win_popen(char *command, char *type); |
| 23 |
+ |
extern int win_pclose(FILE *p); |
| 24 |
+ |
#ifdef __cplusplus |
| 25 |
+ |
} |
| 26 |
+ |
#endif |
| 27 |
+ |
|
| 28 |
+ |
#define popen(cmd,mode) win_popen(cmd,mode) |
| 29 |
+ |
#define pclose(p) win_pclose(p) |
| 30 |
|
#else |
| 31 |
|
#include <sys/param.h> |
| 32 |
|
#endif |
| 33 |
|
|
| 34 |
|
#include "paths.h" |
| 35 |
+ |
|
| 36 |
+ |
#if !defined(BSD) || defined(sparc) |
| 37 |
+ |
#define vfork fork |
| 38 |
+ |
#endif |
| 39 |
|
|
| 40 |
|
#ifdef __cplusplus |
| 41 |
|
extern "C" { |