aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHarry Sintonen <sintonen@iki.fi>2020-03-30 16:52:43 +0300
committerDaniel Stenberg <daniel@haxx.se>2020-03-31 10:59:06 +0200
commit7a71965e9761f80aa4508472c5b1e3ab03ba018a (patch)
tree1c2e814c559407fc853f21ffbf7e4bdd55549ee9 /src
parent14dd0c020072c161827a75e3a4a236f134a8960c (diff)
build: fixed build for systems with select() in unistd.h
Closes #5169
Diffstat (limited to 'src')
-rw-r--r--src/tool_operate.c2
-rw-r--r--src/tool_sleep.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c
index 3c7dd6829..e1c9c6251 100644
--- a/src/tool_operate.c
+++ b/src/tool_operate.c
@@ -31,6 +31,8 @@
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
+#elif defined(HAVE_UNISTD_H)
+# include <unistd.h>
#endif
#ifdef __VMS
diff --git a/src/tool_sleep.c b/src/tool_sleep.c
index 67a54435f..e842ba93b 100644
--- a/src/tool_sleep.c
+++ b/src/tool_sleep.c
@@ -23,6 +23,8 @@
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
+#elif defined(HAVE_UNISTD_H)
+# include <unistd.h>
#endif
#ifdef HAVE_POLL_H