Skip to content

Commit 97e0581

Browse files
committed
Merge #17084: build: Fix #include sys/poll.h to just poll.h (without sys/)
4de0bde 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 4de0bde Tree-SHA512: 01c22a62b5bc327b3a46f721312af2283f4e09cb314bc7a3f82dbc1f4eda6f018a394559c4370fee895532e768b8a9152783979d61cb8a0ed86de069f7c150fb
2 parents c08bf2b + 4de0bde commit 97e0581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compat/stdin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#else
1515
#include <termios.h> // for SetStdinEcho()
1616
#include <unistd.h> // for SetStdinEcho(), isatty()
17-
#include <sys/poll.h> // for StdinReady()
17+
#include <poll.h> // for StdinReady()
1818
#endif
1919

2020
#include <compat/stdin.h>

0 commit comments

Comments
 (0)