diff --git a/execve.c b/execve.c new file mode 100644 index 0000000..a89726d --- /dev/null +++ b/execve.c @@ -0,0 +1,10 @@ +/* + * linux/lib/execve.c + * + * (C) 1991 Linus Torvalds + */ + +#define __LIBRARY__ +#include + +_syscall3(int,execve,const char *,file,char **,argv,char **,envp)