diff options
Diffstat (limited to 'libexec_vsetenvf_replace.c')
-rw-r--r-- | libexec_vsetenvf_replace.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libexec_vsetenvf_replace.c b/libexec_vsetenvf_replace.c new file mode 100644 index 0000000..d1e8788 --- /dev/null +++ b/libexec_vsetenvf_replace.c @@ -0,0 +1,15 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" +#ifndef TEST + + +int +libexec_vsetenvf_replace(struct libexec_command *cmd, const char *name, const char *value_fmt, va_list args) +{ + return libexec_vsetenvf(cmd, LIBEXEC_REPLACE, name, value_fmt, args); +} + + +#else +TESTED_ELSEWHERE /* libexec_setenvf_replace.c */ +#endif |