diff options
author | Wladimir J. van der Laan <laanwj@protonmail.com> | 2019-10-09 15:01:53 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@protonmail.com> | 2019-10-09 15:01:58 +0200 |
commit | 97e05817d461d58ae58b998672d1c722edbd9475 (patch) | |
tree | 4dfee11bb08e7c8e002a187cd5c9efa30c76705d | |
parent | c08bf2b574636023cd9d68cb43b3dada5b0cc737 (diff) | |
parent | 4de0bde7bc546638cbbbb8bc4eb0d840d81cb953 (diff) |
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
-rw-r--r-- | src/compat/stdin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat/stdin.cpp b/src/compat/stdin.cpp index 4f2ba1e9c4..98d406cca8 100644 --- a/src/compat/stdin.cpp +++ b/src/compat/stdin.cpp @@ -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> |