diff options
| author | Daki Carnhof <[email protected]> | 2019-10-09 12:31:11 +0200 |
|---|---|---|
| committer | Daki Carnhof <[email protected]> | 2019-10-09 13:30:36 +0200 |
| commit | 4de0bde7bc546638cbbbb8bc4eb0d840d81cb953 (patch) | |
| tree | 4dfee11bb08e7c8e002a187cd5c9efa30c76705d /src/compat/stdin.cpp | |
| parent | Merge #15437: p2p: Remove BIP61 reject messages (diff) | |
| download | discoin-4de0bde7bc546638cbbbb8bc4eb0d840d81cb953.tar.xz discoin-4de0bde7bc546638cbbbb8bc4eb0d840d81cb953.zip | |
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
Diffstat (limited to 'src/compat/stdin.cpp')
| -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 4f2ba1e9c..98d406cca 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> |