blob: 4b7959fc8989aa1f9bfa1751e2859ecb27bd43f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#ifndef _NO_EXECVE
/* execlp.c */
/* This and the other exec*.c files in this directory require
the target to provide the _execve syscall. */
#include <_ansi.h>
#include <unistd.h>
#ifdef _EXECL_USE_MALLOC
#include <errno.h>
#include <stdlib.h>
#else
#include <alloca.h>
#endif
#include <stdarg.h>
int
execlp (const char *path,
const char *arg0, ...)
{
int i;
va_list args;
const char **argv;
i = 1;
va_start (args, arg0);
do
i++;
while (va_arg (args, const char *) != NULL);
va_end (args);
#ifndef _EXECL_USE_MALLOC
argv = alloca (i * sizeof(const char *));
#else
argv = malloc (i * sizeof(const char *));
if (argv == NULL)
{
errno = ENOMEM;
return -1;
}
#endif
va_start (args, arg0);
argv[0] = arg0;
i = 1;
do
argv[i] = va_arg (args, const char *);
while (argv[i++] != NULL);
va_end (args);
i = execvp (path, (char * const *) argv);
#ifdef _EXECL_USE_MALLOC
free (argv);
#endif
return i;
}
#endif /* !_NO_EXECVE */
|