mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 03:56:01 +01:00
18 lines
374 B
C++
18 lines
374 B
C++
#pragma once
|
|
|
|
#include "os-string.hh"
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* `execvpe` is a GNU extension, so we need to implement it for other POSIX
|
|
* platforms.
|
|
*
|
|
* We use our own implementation unconditionally for consistency.
|
|
*/
|
|
int execvpe(
|
|
const OsString::value_type * file0,
|
|
const OsString::value_type * const argv[],
|
|
const OsString::value_type * const envp[]);
|
|
|
|
}
|