mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
14 lines
276 B
C++
14 lines
276 B
C++
|
#pragma once
|
||
|
|
||
|
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 char * file0, char * const argv[], char * const envp[]);
|
||
|
|
||
|
}
|