client: Include poll.h instead of sys/poll.h

POSIX mandates the poll.h header as the standard location of poll(2).
This commit is contained in:
Jonas 'Sortie' Termansen 2014-01-14 18:38:59 +01:00 committed by Kristian Høgsberg
parent 32b2baaf51
commit ed139ddcd7

View file

@ -36,7 +36,7 @@
#include <ctype.h>
#include <assert.h>
#include <fcntl.h>
#include <sys/poll.h>
#include <poll.h>
#include <pthread.h>
#include "wayland-util.h"