summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2022-01-03 04:29:19 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2022-01-03 04:29:19 -0500
commitb9706ac49b280b80c12b2e216510b18351e2d660 (patch)
treeee0619eec3472ba757c78371add388ace3bde99f /src
parent2c3917464945e034dd70a3b28feb035d5a1a9f35 (diff)
downloadlighttpd-git-b9706ac49b280b80c12b2e216510b18351e2d660.tar.gz
[core] errno_t detection on Illumos
(thx devnexen)
Diffstat (limited to 'src')
-rw-r--r--src/ck.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ck.h b/src/ck.h
index 4389d746..cfff2a49 100644
--- a/src/ck.h
+++ b/src/ck.h
@@ -25,6 +25,9 @@ typedef size_t rsize_t;
#endif
#include <errno.h>
#endif
+#ifdef __sun
+#include <errno.h>
+#endif
__BEGIN_DECLS