/
ne1ghost
/
nix
Обзор
Документация
Войти
/
ne1ghost
/
nix
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/libutil/exec.hh
15 строк
319 B
John Ericson
More support for `std::filepath` in libnixutil
27 авг 2024, 00:23
27 авг 2024, 00:23
a97a084
Код
Авторство
О чём код?
#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 OsChar * file0, const OsChar * const argv[], const OsChar * const envp[]); }