diff options
Diffstat (limited to 'include/select.h')
-rw-r--r-- | include/select.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/select.h b/include/select.h new file mode 100644 index 0000000..646dd50 --- /dev/null +++ b/include/select.h @@ -0,0 +1,13 @@ +#ifndef SELECT_H +#define SELECT_H + +#include <sys/types.h> +#include <sys/time.h> + +#ifdef HAS_SELECT_H +#include <sys/select.h> +#endif + +extern int select(); + +#endif |