diff options
author | Kylie McClain <somasis@exherbo.org> | 2016-01-19 22:27:28 -0500 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-01-26 21:50:17 +0000 |
commit | ff0c9caa8e1e076b82241304dfd19d5b3e2a2aec (patch) | |
tree | fab06232087fa400eddce0a7930cae76c79c43cc | |
parent | 358615f416a8f3085a63c03a55564f71946083d1 (diff) |
tests: Include poll.h rather than sys/poll.h
sys/poll.h is a non-standard location of the poll.h header, and is
incorrect on non-glibc libcs. poll.h, however, is defined in SUS (v2)
and is more portable.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93764
http://pubs.opengroup.org/onlinepubs/007908799/xsh/poll.h.html
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r-- | tests/modetest/modetest.c | 2 | ||||
-rw-r--r-- | tests/vbltest/vbltest.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c index b8aa94b13003..a5ac5bd5e6d2 100644 --- a/tests/modetest/modetest.c +++ b/tests/modetest/modetest.c @@ -53,7 +53,7 @@ #include <string.h> #include <strings.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/time.h> #ifdef HAVE_SYS_SELECT_H #include <sys/select.h> diff --git a/tests/vbltest/vbltest.c b/tests/vbltest/vbltest.c index 97dd44dcc013..3f6b803a743c 100644 --- a/tests/vbltest/vbltest.c +++ b/tests/vbltest/vbltest.c @@ -35,7 +35,7 @@ #include <unistd.h> #include <string.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/time.h> #ifdef HAVE_SYS_SELECT_H #include <sys/select.h> |