diff options
author | Jim Blandy <jimb@red-bean.com> | 1998-01-04 00:31:05 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1998-01-04 00:31:05 +0000 |
commit | bb3b902f56e889bca46d211b6e87368e76b55216 (patch) | |
tree | 413797b4a4bcc43653eb3e47baa6c82b04df8be4 /libguile/iselect.h | |
parent | e7c5fb37707f8aaab93a7f27f43c544967b309fb (diff) | |
download | guile-bb3b902f56e889bca46d211b6e87368e76b55216.tar.gz |
* iselect.h: Some systems require <sys/types.h> to get the FD_SET
macro definitions.
Diffstat (limited to 'libguile/iselect.h')
-rw-r--r-- | libguile/iselect.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/iselect.h b/libguile/iselect.h index e1a5a3f6a..3b95a7fdf 100644 --- a/libguile/iselect.h +++ b/libguile/iselect.h @@ -46,6 +46,9 @@ #include "libguile/__scm.h" +/* Needed for FD_SET on some systems. */ +#include <sys/types.h> + # ifdef TIME_WITH_SYS_TIME # include <sys/time.h> # include <time.h> |