diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1996-01-08 10:19:02 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1996-01-08 10:19:02 +0000 |
commit | 76f2da82e24e11be6cc119197f56875afc74b50f (patch) | |
tree | 58defe95f5b181fb28a8aa32bf62fe6dcd362925 /otherlibs/unix | |
parent | 02eba90dce53e2933e7f010d335c7a0052d13f83 (diff) |
Test et inclusion de <sys/select.h>, en particulier pour AIX
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@601 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix')
-rw-r--r-- | otherlibs/unix/select.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/otherlibs/unix/select.c b/otherlibs/unix/select.c index ae1f5600a..0e6d16ec8 100644 --- a/otherlibs/unix/select.c +++ b/otherlibs/unix/select.c @@ -20,6 +20,9 @@ #include <sys/types.h> #include <sys/time.h> +#ifdef HAS_SYS_SELECT_H +#include <sys/select.h> +#endif #ifdef FD_ISSET typedef fd_set file_descr_set; |