diff options
author | darkvater <darkvater@openttd.org> | 2004-12-18 18:05:56 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2004-12-18 18:05:56 +0000 |
commit | 2f55c8bfc4553d4c4d8871d9a88ef095571fc034 (patch) | |
tree | e2f13a00d67a593f0e97fe2f7a2da47c9f9bd62b | |
parent | a0f22713c62926fbb50d23964fca2c3de32844c1 (diff) | |
download | openttd-2f55c8bfc4553d4c4d8871d9a88ef095571fc034.tar.xz |
(svn r1159) -Fix: pid_t was unknown to windows; typedeffed to int.
-rw-r--r-- | variables.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/variables.h b/variables.h index cdefafe50..8a0f1ad4e 100644 --- a/variables.h +++ b/variables.h @@ -422,6 +422,9 @@ VARDEF int _debug_ai_level; VARDEF int _debug_net_level; /* Forking stuff */ +#if !defined(pid_t) +typedef int pid_t; +#endif VARDEF bool _dedicated_forks; VARDEF bool _dedicated_enabled; VARDEF pid_t _dedicated_pid; |