diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2002-01-20 16:30:56 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2002-01-20 16:30:56 +0000 |
commit | 83206b7f08eb12ef089f3e7b51bbdd7e78684c06 (patch) | |
tree | f0b92c46023dc28324e18b16b1c5fb17ddf7fb81 | |
parent | c988e25c39431972a95d6cbe31c6b34d8a9e6b9e (diff) |
ajout includes pour MacOS X
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4285 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | otherlibs/graph/events.c | 2 | ||||
-rw-r--r-- | otherlibs/unix/select.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/graph/events.c b/otherlibs/graph/events.c index dadd0938b..fe50cdda4 100644 --- a/otherlibs/graph/events.c +++ b/otherlibs/graph/events.c @@ -22,6 +22,8 @@ #ifdef HAS_SYS_SELECT_H #include <sys/select.h> #endif +#include <string.h> +#include <unistd.h> struct event_data { short kind; diff --git a/otherlibs/unix/select.c b/otherlibs/unix/select.c index 674184b17..8923e130f 100644 --- a/otherlibs/unix/select.c +++ b/otherlibs/unix/select.c @@ -26,10 +26,8 @@ #ifdef HAS_SYS_SELECT_H #include <sys/select.h> #endif - -#if defined(__OpenBSD__) || defined(__MACH__) #include <string.h> -#endif +#include <unistd.h> typedef fd_set file_descr_set; |