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>                                                                            
  ^~~~~~~
This commit is contained in:
Luca Weiss 2019-04-14 10:38:25 +00:00
parent 250f1066ff
commit 923a1e9688

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>