2002-09-16 01:09:56 +00:00
|
|
|
#ifndef SELECT_H
|
|
|
|
#define SELECT_H
|
|
|
|
|
|
|
|
/* sysdep: +sysselect */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/select.h>
|
2003-09-06 00:03:27 +00:00
|
|
|
|
|
|
|
/* braindead BSD uses bzero in FD_ZERO but doesn't #include string.h */
|
|
|
|
#include <string.h>
|
|
|
|
|
2002-09-16 01:09:56 +00:00
|
|
|
extern int select();
|
|
|
|
|
|
|
|
#endif
|