Fix BSD build

<sys/wait.h> must be included in order to use WIF* macros.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
diff --git a/net/slirp.c b/net/slirp.c
index b75ad16..361899b 100644
--- a/net/slirp.c
+++ b/net/slirp.c
@@ -25,6 +25,9 @@
 
 #include "config-host.h"
 
+#ifndef _WIN32
+#include <sys/wait.h>
+#endif
 #include "net.h"
 #include "monitor.h"
 #include "sysemu.h"