summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--otherlibs/graph/events.c2
-rw-r--r--otherlibs/unix/select.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/graph/events.c b/otherlibs/graph/events.c
index dadd0938b..fe50cdda4 100644
--- a/otherlibs/graph/events.c
+++ b/otherlibs/graph/events.c
@@ -22,6 +22,8 @@
#ifdef HAS_SYS_SELECT_H
#include <sys/select.h>
#endif
+#include <string.h>
+#include <unistd.h>
struct event_data {
short kind;
diff --git a/otherlibs/unix/select.c b/otherlibs/unix/select.c
index 674184b17..8923e130f 100644
--- a/otherlibs/unix/select.c
+++ b/otherlibs/unix/select.c
@@ -26,10 +26,8 @@
#ifdef HAS_SYS_SELECT_H
#include <sys/select.h>
#endif
-
-#if defined(__OpenBSD__) || defined(__MACH__)
#include <string.h>
-#endif
+#include <unistd.h>
typedef fd_set file_descr_set;