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