foxygit / doom Log in
commit d9be068243f518d50bd4577db58693219b3acd57
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Sun Jun 7 19:08:08 2009 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Sun Jun 7 19:08:08 2009 +0000

    Fix header includes (thanks exp[x])

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 1575
---
 setup/execute.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/setup/execute.c b/setup/execute.c
index 8f082de7..cbcab29e 100644
--- a/setup/execute.c
+++ b/setup/execute.c
@@ -34,12 +34,12 @@

 #elif defined(_WIN32)

-#include <sys/wait.h>
-#include <unistd.h>
+#include <process.h>

 #else

-#include <process.h>
+#include <sys/wait.h>
+#include <unistd.h>

 #endif