add headers for select()

This commit is contained in:
Dana Jansens 2003-01-15 03:17:46 +00:00
parent d9a5620f80
commit e44d7697e5

View file

@ -7,6 +7,15 @@
#include "timer.hh"
#include "display.hh"
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#else
# ifdef HAVE_UNISTD_H
# include <sys/types.h>
# include <unistd.h>
# endif // HAVE_UNISTD_H
#endif // HAVE_SYS_SELECT_H
namespace otk {
timeval Timer::_nearest_timeout, Timer::_now;