Home
last modified time | relevance | path

Searched refs:memp (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/gen/
Dexec.c134 char **memp; in execvpe() local
214 memp = alloca((cnt + 2) * sizeof(char *)); in execvpe()
215 if (memp == NULL) in execvpe()
217 memp[0] = "sh"; in execvpe()
218 memp[1] = bp; in execvpe()
219 bcopy(argv + 1, memp + 2, cnt * sizeof(char *)); in execvpe()
220 (void)execve(_PATH_BSHELL, memp, envp); in execvpe()