aboutsummaryrefslogtreecommitdiffhomepage
path: root/input_common.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-08-11 05:02:46 +1000
committerGravatar axel <axel@liljencrantz.se>2006-08-11 05:02:46 +1000
commit4b0810d7e95ea08d8736a263501dbe1e0b8b9843 (patch)
treeac591eab389fe00225f226f629aa249813a226bc /input_common.c
parent51d58a6a7c6daf1b453b3cd52b4d87e83d563848 (diff)
Added missing include in input_common.c, needed under FreeBSD. Thanks to Netocrat.
darcs-hash:20060810190246-ac50b-190b0b2e1fbcab0bd742f5b98f7e1e173b793800.gz
Diffstat (limited to 'input_common.c')
-rw-r--r--input_common.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/input_common.c b/input_common.c
index dcb8bac0..ebc4b9ec 100644
--- a/input_common.c
+++ b/input_common.c
@@ -14,7 +14,9 @@ Implementation file for the low level input library
#include <sys/types.h>
#include <unistd.h>
#include <wchar.h>
-
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
#include "fallback.h"
#include "util.h"