/* See LICENSE file for copyright and license details. */ #include "common.h" #ifndef TEST int libexec_pipe_commands(enum libexec_pipe how, ...) { int ret; va_list args; va_start(args, how); ret = libexec_vpipe_commands(how, args); va_end(args); return ret; } #else LIBEXEC_CONST__ int main(void) {return 0;} /* TODO test */ #endif