mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-18 16:42:54 +01:00
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:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user