diff options
author | Simon Howard | 2009-06-07 19:08:08 +0000 |
---|---|---|
committer | Simon Howard | 2009-06-07 19:08:08 +0000 |
commit | d9be068243f518d50bd4577db58693219b3acd57 (patch) | |
tree | d6a0cca4ff30211adbff3136a1a4ea497b674891 /setup/execute.c | |
parent | ea3b0114bd51314ee649a74d78ce080aa581429f (diff) | |
download | chocolate-doom-d9be068243f518d50bd4577db58693219b3acd57.tar.gz chocolate-doom-d9be068243f518d50bd4577db58693219b3acd57.tar.bz2 chocolate-doom-d9be068243f518d50bd4577db58693219b3acd57.zip |
Fix header includes (thanks exp[x])
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1575
Diffstat (limited to 'setup/execute.c')
-rw-r--r-- | setup/execute.c | 6 |
1 files 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 |