From 7a71965e9761f80aa4508472c5b1e3ab03ba018a Mon Sep 17 00:00:00 2001 From: Harry Sintonen Date: Mon, 30 Mar 2020 16:52:43 +0300 Subject: build: fixed build for systems with select() in unistd.h Closes #5169 --- tests/libtest/test.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/libtest') diff --git a/tests/libtest/test.h b/tests/libtest/test.h index 4f2af415a..4806375a0 100644 --- a/tests/libtest/test.h +++ b/tests/libtest/test.h @@ -36,6 +36,8 @@ #ifdef HAVE_SYS_SELECT_H /* since so many tests use select(), we can just as well include it here */ #include +#elif defined(HAVE_UNISTD_H) +#include #endif #ifdef TPF -- cgit v1.2.3