build: Fix #include sys/poll.h to just poll.h (without sys/)

http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html
http://man7.org/linux/man-pages/man2/poll.2.html
This commit is contained in:
Daki Carnhof 2019-10-09 12:31:11 +02:00
parent c08bf2b574
commit 4de0bde7bc

View file

@ -14,7 +14,7 @@
#else
#include <termios.h> // for SetStdinEcho()
#include <unistd.h> // for SetStdinEcho(), isatty()
#include <sys/poll.h> // for StdinReady()
#include <poll.h> // for StdinReady()
#endif
#include <compat/stdin.h>