Commit 95e1e195ac3f1c02d6db1dd268129e6ab405c484

Kano 2012-02-08T19:07:41

sys/wait.h not required in windows

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/device-cpu.c b/device-cpu.c
index d1eb4eb..be658d2 100644
--- a/device-cpu.c
+++ b/device-cpu.c
@@ -23,9 +23,9 @@
 
 #include <sys/stat.h>
 #include <sys/types.h>
-#include <sys/wait.h>
 
 #ifndef WIN32
+#include <sys/wait.h>
 #include <sys/resource.h>
 #endif
 #include <libgen.h>