From 5b340830045aa3dc6ca01cd1c6082b09161877d2 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 17 May 2007 23:02:14 +0000 Subject: several *.c files: move 'extern environ' up to the location of #includes --- editors/awk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'editors') diff --git a/editors/awk.c b/editors/awk.c index 9366a2398..76ebe0fb9 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -10,6 +10,7 @@ #include "busybox.h" #include "xregex.h" #include +extern char **environ; /* This is a NOEXEC applet. Be very careful! */ @@ -393,8 +394,6 @@ enum { NPRIMES = sizeof(PRIMES) / sizeof(unsigned) }; /* globals */ -extern char **environ; - static var * V[_intvarcount_]; static chain beginseq, mainseq, endseq, *seq; static int nextrec, nextfile; -- cgit v1.2.3