diff options
Diffstat (limited to 'klibc/include/sys/select.h')
-rw-r--r-- | klibc/include/sys/select.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/klibc/include/sys/select.h b/klibc/include/sys/select.h new file mode 100644 index 0000000000..7caf8c931b --- /dev/null +++ b/klibc/include/sys/select.h @@ -0,0 +1,13 @@ +/* + * sys/select.h + */ + +#ifndef _SYS_SELECT_H +#define _SYS_SELECT_H + +#include <sys/time.h> +#include <sys/types.h> + +__extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *); + +#endif /* _SYS_SELECT_H */ |