From 4de0bde7bc546638cbbbb8bc4eb0d840d81cb953 Mon Sep 17 00:00:00 2001 From: Daki Carnhof Date: Wed, 9 Oct 2019 12:31:11 +0200 Subject: [PATCH] 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 --- src/compat/stdin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 // for SetStdinEcho() #include // for SetStdinEcho(), isatty() -#include // for StdinReady() +#include // for StdinReady() #endif #include