(svn r1159) -Fix: pid_t was unknown to windows; typedeffed to int.

This commit is contained in:
darkvater 2004-12-18 18:05:56 +00:00
parent a0f22713c6
commit 2f55c8bfc4

View File

@ -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;