diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 4b37f40..4417ee9 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -60,6 +60,7 @@ #if JOBS || ENABLE_ASH_READ_NCHARS #include <termios.h> #endif +extern char **environ; #if defined(__uClinux__) #error "Do not even bother, ash will not run on uClinux" @@ -1747,7 +1748,6 @@ struct redirtab { static struct redirtab *redirlist; static int nullredirs; -extern char **environ; static int preverrout_fd; /* save fd2 before print debug if xflag is set. */ #define VTABSIZE 39 |