[llvm-commits] CVS: llvm/include/Config/unistd.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Jun 1 18:51:01 PDT 2004
Changes in directory llvm/include/Config:
unistd.h updated: 1.3 -> 1.4
---
Log message:
On win32, process.h provides some of the traditional stuff that unistd
provides. This seems like a relatively clean way to get it.
---
Diffs of the changes: (+4 -0)
Index: llvm/include/Config/unistd.h
diff -u llvm/include/Config/unistd.h:1.3 llvm/include/Config/unistd.h:1.4
--- llvm/include/Config/unistd.h:1.3 Mon Oct 20 15:11:38 2003
+++ llvm/include/Config/unistd.h Tue Jun 1 18:47:00 2004
@@ -20,4 +20,8 @@
#include <unistd.h>
#endif
+#ifdef _WIN32
+#include <process.h>
+#endif
+
#endif
More information about the llvm-commits
mailing list