aboutsummaryrefslogtreecommitdiffstats
path: root/libexec_vsetenvf_noreplace.c
blob: 1fb14769c820ebf83aefbcb472f5b898b6bdb61a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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