blob: 10c22d2fa8344c0d7f4da412fab09cc5c4d2817b (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
int
libexec_vputenvf_replace(struct libexec_command *cmd, const char *fmt, va_list args)
{
return libexec_vputenvf(cmd, LIBEXEC_REPLACE, fmt, args);
}
#else
TESTED_ELSEWHERE /* libexec_putenvf_replace.c */
#endif
|