blob: 36b18f991e3d2ebbe126c8b62d1c2732422fd5e7 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
int
libexec_construct_command(struct libexec_command *cmd, const char *fmt, ...)
{
int ret;
va_list args;
va_start(args, fmt);
ret = libexec_vconstruct_command(cmd, fmt, args);
va_end(args);
return ret;
}
#else
LIBEXEC_CONST__ int main(void) {return 0;} /* TODO test */
#endif
|