Merge pull request #95 from Subv/patch-1

Use <poll.h> instead of <sys/poll.h> in unix.c
This commit is contained in:
Lee Salzman 2018-09-11 00:21:30 -04:00 committed by GitHub
commit 295456fba9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
unix.c
View file

@ -51,7 +51,7 @@
#endif
#ifdef HAS_POLL
#include <sys/poll.h>
#include <poll.h>
#endif
#ifndef HAS_SOCKLEN_T