engines/net.c: fix compilation error due to missing signal.h include

Corrects this build failure:

	engines/net.c: In function 'fio_netio_terminate':
	engines/net.c:900:2: warning: implicit declaration of function 'kill' [-Wimplicit-function-declaration]
	engines/net.c:900:16: error: 'SIGUSR2' undeclared (first use in this function)
	engines/net.c:900:16: note: each undeclared identifier is reported only once for each function it appears in

Signed-off-by: Steven Noonan <snoonan@amazon.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/engines/net.c b/engines/net.c
index 81e173c..edb5577 100644
--- a/engines/net.c
+++ b/engines/net.c
@@ -7,6 +7,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <signal.h>
 #include <errno.h>
 #include <assert.h>
 #include <netinet/in.h>