From e57fc6bbb2e98f9ef3336db698dc7dd260dfc502 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 9 Feb 2001 23:06:54 +0000 Subject: Use __environ instead of the GNU extension environ. -Erik --- libc/unistd/execlp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libc/unistd/execlp.c') diff --git a/libc/unistd/execlp.c b/libc/unistd/execlp.c index 50fb4a032..fef10d376 100644 --- a/libc/unistd/execlp.c +++ b/libc/unistd/execlp.c @@ -3,7 +3,6 @@ #include #include -extern char **environ; extern int execvep(const char *path, char *__const argv[], char *__const envp[]); int execlp(__const char *file, __const char *arg, ...) @@ -43,7 +42,7 @@ int execlp(__const char *file, __const char *arg, ...) va_end(args); - i = execvep(file, (char *const *) argv, environ); + i = execvep(file, (char *const *) argv, __environ); if (argv != shortargv) free(argv); -- cgit v1.2.3