diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1996-02-21 10:49:46 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1996-02-21 10:49:46 +0000 |
commit | c5483309b52f01b6275d1cb68a48219ed666cf17 (patch) | |
tree | b37b4247b069556db2c4eb1b7ad79a16921dee6d /byterun/sys.c | |
parent | a76589a552b694b3888cd8853e7d2d469f51ac43 (diff) |
Portage Windows NT/95.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@650 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/sys.c')
-rw-r--r-- | byterun/sys.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/byterun/sys.c b/byterun/sys.c index d56b00a2f..957885fad 100644 --- a/byterun/sys.c +++ b/byterun/sys.c @@ -20,8 +20,10 @@ #include <string.h> #include <sys/types.h> #include <sys/stat.h> -#include <unistd.h> #include "config.h" +#ifdef HAS_UNISTD +#include <unistd.h> +#endif #include "alloc.h" #include "fail.h" #include "instruct.h" |