Revert r101701, Darwin doesn't have 'environ'. Go figure.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101702 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2010-04-18 06:44:21 +00:00
parent b7dfca9778
commit 1a3eb953cc

View File

@ -34,8 +34,6 @@
#include <spawn.h>
#endif
extern char **environ;
namespace llvm {
using namespace sys;
@ -202,7 +200,6 @@ Program::Execute(const Path &path, const char **args, const char **envp,
}
pid_t PID;
if (!envp) envp = (const char**)environ;
int Err = posix_spawn(&PID, path.c_str(), &FileActions,
/*attrp*/0, (char**)args, (char**)envp);