mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r1159) -Fix: pid_t was unknown to windows; typedeffed to int.
This commit is contained in:
parent
1fd06cf773
commit
158a4d897b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user