diff options
Diffstat (limited to 'libc/unistd/execvp.c')
-rw-r--r-- | libc/unistd/execvp.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/unistd/execvp.c b/libc/unistd/execvp.c deleted file mode 100644 index e7e496063..000000000 --- a/libc/unistd/execvp.c +++ /dev/null @@ -1,8 +0,0 @@ -#include <unistd.h> - -extern int execvep(const char *path, char *__const argv[], char *__const envp[]); - -int execvp(__const char *path, char *__const argv[]) -{ - return execvep(path, argv, __environ); -} |