diff options
Diffstat (limited to 'libc/sysdeps/linux/common/execve.c')
-rw-r--r-- | libc/sysdeps/linux/common/execve.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/execve.c b/libc/sysdeps/linux/common/execve.c new file mode 100644 index 000000000..5f79fd02f --- /dev/null +++ b/libc/sysdeps/linux/common/execve.c @@ -0,0 +1,22 @@ +/* vi: set sw=4 ts=4: */ +/* + * execve() for uClibc + * + * Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org> + * + * GNU Library General Public License (LGPL) version 2 or later. + */ + +#include "syscalls.h" +#include <unistd.h> +#include <string.h> +#include <sys/param.h> + +#define __NR___syscall_execve __NR_execve +static inline _syscall3(int, __syscall_execve, const char *, filename, + char *const *, argv, char *const *, envp); + +int execve(const char * filename, char *const * argv, char *const * envp) +{ + return __syscall_execve(filename, argv, envp); +} |