aboutsummaryrefslogtreecommitdiffstats
path: root/vxexecle.c
blob: 61415efa610f4c7953bafd80c1eac7d174acf5e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


int
libsimple_vxexecle(int dirfd, const char *file, int atflags, const char *path, va_list argv_null_envp)
{
	char *const *envp;
	va_list args;
	va_copy(args, argv_null_envp);
	while (va_arg(args, char *));
	envp = va_arg(args, char *const *);
	va_end(args);
	return libsimple_vxexecl(dirfd, file, atflags, path, envp, argv_null_envp);
}


#else
#include "test.h"

int
main(void)
{
        return 0;
}

#endif