diff options
Diffstat (limited to 'src/lib/execve.c')
-rw-r--r-- | src/lib/execve.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/execve.c b/src/lib/execve.c new file mode 100644 index 0000000..a89726d --- /dev/null +++ b/src/lib/execve.c | |||
@@ -0,0 +1,10 @@ | |||
1 | /* | ||
2 | * linux/lib/execve.c | ||
3 | * | ||
4 | * (C) 1991 Linus Torvalds | ||
5 | */ | ||
6 | |||
7 | #define __LIBRARY__ | ||
8 | #include <unistd.h> | ||
9 | |||
10 | _syscall3(int,execve,const char *,file,char **,argv,char **,envp) | ||