aboutsummaryrefslogtreecommitdiffstats
path: root/ports/common/guts/execlp.c
blob: 3cf2889388ce21d27c1f6e2b495b6d09ac4a9ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int execlp(const char *file, const char *arg, va_list ap)
 *	int rc = -1;
 */

	/* NOTE THAT THIS IS NEVER USED!
	 * We implement all execl() in terms of execv()
	 * so this call is not used.
	 */

	rc = real_execlp(file, arg, ap);

/*	return rc;
 * }
 */