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

4de0bde7bc546638cbbbb8bc4eb0d840d81cb953 build: Fix #include sys/poll.h to just poll.h (without sys/) (Daki Carnhof)

Pull request description:

  http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html
  http://man7.org/linux/man-pages/man2/poll.2.html

ACKs for top commit:
  Empact:
    ACK 4de0bde7bc546638cbbbb8bc4eb0d840d81cb953

Tree-SHA512: 01c22a62b5bc327b3a46f721312af2283f4e09cb314bc7a3f82dbc1f4eda6f018a394559c4370fee895532e768b8a9152783979d61cb8a0ed86de069f7c150fb
This commit is contained in:
Wladimir J. van der Laan 2019-10-09 15:01:53 +02:00 committed by Vijay Das Manikpuri
parent be2da00eb2
commit d29f7cc99a
No known key found for this signature in database
GPG Key ID: DB1D81B01DB7C46E

View File

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