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

	rc = real_execvp(file, argv);

/*	return rc;
 * }
 */