tests/gem_seqno_wrap.c: include <signal.h> for definition of kill()

Fixes build failure on Solaris:
gem_seqno_wrap.c: In function ‘run_cmd’:
gem_seqno_wrap.c:328:3: error: implicit declaration of function ‘kill’ [-Werror=implicit-function-declaration]

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Alan Coopersmith 2012-12-16 10:38:54 -08:00 committed by Daniel Vetter
parent c2e05af353
commit f185699a4b

View File

@ -40,6 +40,7 @@
#include <sys/wait.h>
#include <limits.h>
#include <wordexp.h>
#include <signal.h>
#include "i915_drm.h"
#include "intel_bufmgr.h"