aboutsummaryrefslogtreecommitdiffstats
path: root/guts/execv.c
blob: 3fec52aed13a334d216f76386c894bd527fcaada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_execv(const char *path, char *const *argv) {
 *	int rc = -1;
 */
	environ = pseudo_setupenv(environ, getenv("PSEUDO_OPTS"));

	rc = real_execv(path, argv);

/*	return rc;
 * }
 */