Fix incorrect include

In file included from ../clients/multi-resource.c:38:
/usr/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> [-Wcpp]
 #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
  ^~~~~~~

(cherry picked from commit 923a1e9688)
This commit is contained in:
Luca Weiss 2019-04-14 10:38:25 +00:00 committed by Simon Ser
parent df842e64a2
commit 3e7a9c94eb

View file

@ -35,7 +35,7 @@
#include <sys/mman.h>
#include <signal.h>
#include <time.h>
#include <sys/poll.h>
#include <poll.h>
#include <float.h>
#include <math.h>