mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
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:
parent
be2da00eb2
commit
d29f7cc99a
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user