summaryrefslogtreecommitdiff
path: root/libc/unistd/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/unistd/exec.c')
-rw-r--r--libc/unistd/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/exec.c b/libc/unistd/exec.c
index 9793d9ad4..052728d83 100644
--- a/libc/unistd/exec.c
+++ b/libc/unistd/exec.c
@@ -205,7 +205,7 @@ int execlp(const char *file, const char *arg, ...)
} while (--n);
va_end(args);
- n = execvp(file, (char *const *) argv);
+ n = __execvp(file, (char *const *) argv);
EXEC_FREE(argv, size);