Use poll.h instead of sys/poll.h

poll.h is the standard header name, and musl warns for including the wrong
one.

Signed-off-by: Bobby Bingham <koorogi@koorogi.info>
pull/10/head
Bobby Bingham 11 months ago
parent 2182932392
commit 200e35e604

@ -22,7 +22,7 @@
#include <string.h>
#include <sched.h>
#include <errno.h>
#include <sys/poll.h>
#include <poll.h>
#include <sys/stat.h>
#include <sys/time.h>

@ -17,7 +17,7 @@
* Boston, MA 02110-1301, USA.
*/
#include <string.h>
#include <sys/poll.h>
#include <poll.h>
#include <sys/time.h>
#include <errno.h>

Loading…
Cancel
Save