aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Matsuoka2001-11-03 06:40:51 +0000
committerClaudio Matsuoka2001-11-03 06:40:51 +0000
commitcd6443a8e571bdabfd3add2d105c97db704fe31d (patch)
tree50c879e1d2113b0c94e9344a58aa404468150f54
parent49c07dc041e7f2a98720b3c349e4cd6dadbc1962 (diff)
downloadscummvm-rg350-cd6443a8e571bdabfd3add2d105c97db704fe31d.tar.gz
scummvm-rg350-cd6443a8e571bdabfd3add2d105c97db704fe31d.tar.bz2
scummvm-rg350-cd6443a8e571bdabfd3add2d105c97db704fe31d.zip
Not including unistd.h in BeOS (breaks cross-compilation).
svn-id: r3453
-rw-r--r--stdafx.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/stdafx.h b/stdafx.h
index dad652aad7..5ad444f399 100644
--- a/stdafx.h
+++ b/stdafx.h
@@ -1,3 +1,12 @@
+/*
+ * $Id$
+ *
+ * $Log$
+ * Revision 1.4 2001/11/03 06:40:51 cmatsuoka
+ * Not including unistd.h in BeOS (breaks cross-compilation).
+ *
+ */
+
#if defined(WIN32)
#if _MSC_VER > 1000
@@ -47,7 +56,9 @@
#endif
#include <sys/types.h>
#include <sys/uio.h>
+#if !defined(__BEOS__)
#include <unistd.h>
+#endif
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>