aboutsummaryrefslogtreecommitdiffstats
path: root/libexec_vputenvf_noreplace.c
blob: 6998742718e1ba86d0de5dc299d7ec25fdede3a6 (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_vputenvf_noreplace(struct libexec_command *cmd, const char *fmt, va_list args)
{
	return libexec_vputenvf(cmd, LIBEXEC_NOREPLACE, fmt, args);
}


#else
TESTED_ELSEWHERE /* libexec_putenvf_noreplace.c */
#endif