1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

On win32, process.h provides some of the traditional stuff that unistd

provides.  This seems like a relatively clean way to get it.

llvm-svn: 13936
This commit is contained in:
Chris Lattner 2004-06-01 23:47:00 +00:00
parent 4570d9a259
commit 3b0942f64e

View File

@ -20,4 +20,8 @@
#include <unistd.h>
#endif
#ifdef _WIN32
#include <process.h>
#endif
#endif