diff options
author | mike <mike@FreeBSD.org> | 2002-12-31 04:13:50 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-12-31 04:13:50 +0000 |
commit | a9d3194c618b86a9cb3f7f4bf793b35c9a59c0fc (patch) | |
tree | 21f6d6c0aa0e5c511fad0282241e6c38509d67d9 | |
parent | 481d90d741d647e72a4e17600ee8d3b41f92b3a6 (diff) | |
download | FreeBSD-src-a9d3194c618b86a9cb3f7f4bf793b35c9a59c0fc.zip FreeBSD-src-a9d3194c618b86a9cb3f7f4bf793b35c9a59c0fc.tar.gz |
Add complete struct timeval by including <sys/_timeval.h>.
-rw-r--r-- | sys/sys/select.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/sys/select.h b/sys/sys/select.h index 3843238..e2b58c0 100644 --- a/sys/sys/select.h +++ b/sys/sys/select.h @@ -40,15 +40,9 @@ #include <sys/_types.h> #include <sys/_sigset.h> +#include <sys/_timeval.h> #include <sys/timespec.h> -/* - * XXX - * Other things required for this header which we do not presently implement: - * - * struct timeval (with suseconds_t) - */ - typedef unsigned long __fd_mask; #if __BSD_VISIBLE typedef __fd_mask fd_mask; @@ -103,7 +97,6 @@ typedef struct fd_set { } while (0) #ifndef _KERNEL -struct timeval; __BEGIN_DECLS int pselect(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, |