summaryrefslogtreecommitdiff
path: root/tests/vbltest
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-01-20 05:35:11 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2016-01-26 21:50:17 +0000
commit358615f416a8f3085a63c03a55564f71946083d1 (patch)
treead81522a5fb6e33693050cd7790a9fe327c40e26 /tests/vbltest
parent1674147a149c2165a927a5d8eb0db4eee1f6a4e3 (diff)
tests: Include sys/select.h
Used in compliance with POSIX 2001/2008 Fixes errors e.g. error: implicit declaration of function 'select' and helps with missing definitions of FD_* defines v2: conditionally include sys/select.h, include in every test where needed. Signed-off-by: Khem Raj <raj.khem@gmail.com> Reviewed-by: Thierry Reding <thierry.reding@gmail.com> (v1) Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'tests/vbltest')
-rw-r--r--tests/vbltest/vbltest.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/vbltest/vbltest.c b/tests/vbltest/vbltest.c
index 4475b49b..97dd44dc 100644
--- a/tests/vbltest/vbltest.c
+++ b/tests/vbltest/vbltest.c
@@ -37,6 +37,9 @@
#include <errno.h>
#include <sys/poll.h>
#include <sys/time.h>
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
#include "xf86drm.h"
#include "xf86drmMode.h"