diff options
Diffstat (limited to 'libc-top-half/musl/src/process/execle.c')
-rw-r--r-- | libc-top-half/musl/src/process/execle.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/process/execle.c b/libc-top-half/musl/src/process/execle.c new file mode 100644 index 0000000..37ca503 --- /dev/null +++ b/libc-top-half/musl/src/process/execle.c @@ -0,0 +1,23 @@ +#include <unistd.h> +#include <stdarg.h> + +int execle(const char *path, const char *argv0, ...) +{ + int argc; + va_list ap; + va_start(ap, argv0); + for (argc=1; va_arg(ap, const char *); argc++); + va_end(ap); + { + int i; + char *argv[argc+1]; + char **envp; + va_start(ap, argv0); + argv[0] = (char *)argv0; + for (i=1; i<=argc; i++) + argv[i] = va_arg(ap, char *); + envp = va_arg(ap, char **); + va_end(ap); + return execve(path, argv, envp); + } +} |