5 /* This and the other exec*.c files in this directory require
6 the target to provide the _execve syscall. */
15 execlp (const char *path
,
16 const char *arg0
, ...)
22 const char *argv
[256];
24 va_start (args
, arg0
);
28 argv
[i
] = va_arg (args
, const char *);
29 while (argv
[i
++] != NULL
);
32 return execvp (path
, (char * const *) argv
);
35 #endif /* !_NO_EXECVE */