(svn r1159) -Fix: pid_t was unknown to windows; typedeffed to int.
authordarkvater
Sat, 18 Dec 2004 18:05:56 +0000
changeset 707 664db73e68cb
parent 706 841f24d374ed
child 708 e85824649bce
(svn r1159) -Fix: pid_t was unknown to windows; typedeffed to int.
variables.h
--- a/variables.h	Sat Dec 18 17:31:02 2004 +0000
+++ b/variables.h	Sat Dec 18 18:05:56 2004 +0000
@@ -422,6 +422,9 @@
 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;