nix run: Fix segfault on macOS
Note that clearenv() is not available on macOS. Fixes #1907.
This commit is contained in:
parent
9432f3fb7d
commit
24ec750003
3 changed files with 11 additions and 3 deletions
|
@ -32,6 +32,9 @@ string getEnv(const string & key, const string & def = "");
|
|||
/* Get the entire environment. */
|
||||
std::map<std::string, std::string> getEnv();
|
||||
|
||||
/* Clear the environment. */
|
||||
void clearEnv();
|
||||
|
||||
/* Return an absolutized path, resolving paths relative to the
|
||||
specified directory, or the current directory otherwise. The path
|
||||
is also canonicalised. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue