repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.git]
/
lib
/
posix
/
_execlp.c
blob
73dfdc389a7ad51fae49d768e6da784a691b8e34
1
/* execlp() - execute with PATH search Author: Kees J. Bot
2
* 22 Jan 1994
3
*/
4
#define execlp _execlp
5
#define execvp _execvp
6
#include <unistd.h>
7
8
int
execlp
(
const char
*
file
,
const char
*
arg1
, ...)
9
/* execlp("sh", "sh", "-c", "example", (char *) 0); */
10
{
11
return
execvp
(
file
, (
char
*
const
*) &
arg1
);
12
}