Added missing include in input_common.c, needed under FreeBSD. Thanks to Netocrat.

darcs-hash:20060810190246-ac50b-190b0b2e1fbcab0bd742f5b98f7e1e173b793800.gz
This commit is contained in:
axel 2006-08-11 05:02:46 +10:00
parent 51d58a6a7c
commit 4b0810d7e9

View file

@ -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"