11 lines
170 B
11 lines
170 B
3 years ago
|
/*
|
||
|
* linux/lib/execve.c
|
||
|
*
|
||
|
* (C) 1991 Linus Torvalds
|
||
|
*/
|
||
|
|
||
|
#define __LIBRARY__
|
||
|
#include <unistd.h>
|
||
|
|
||
|
_syscall3(int,execve,const char *,file,char **,argv,char **,envp)
|