aboutsummaryrefslogtreecommitdiffstats
path: root/ports/common/guts/execl.c
blob: be86b494570fed638d724ccd5c5cbc6237e716dc (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 execl(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_execl(file, arg, ap);

/*	return rc;
 * }
 */