aboutsummaryrefslogtreecommitdiff
path: root/lib/dict.c
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 /lib/dict.c
parent14dd0c020072c161827a75e3a4a236f134a8960c (diff)
build: fixed build for systems with select() in unistd.h
Closes #5169
Diffstat (limited to 'lib/dict.c')
-rw-r--r--lib/dict.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/dict.c b/lib/dict.c
index 208a2336f..e42165a9e 100644
--- a/lib/dict.c
+++ b/lib/dict.c
@@ -46,6 +46,8 @@
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
+#elif defined(HAVE_UNISTD_H)
+#include <unistd.h>
#endif
#include "urldata.h"