diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 3 |
1 files changed, 1 insertions, 2 deletions
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 @@ | |||
10 | #include "busybox.h" | 10 | #include "busybox.h" |
11 | #include "xregex.h" | 11 | #include "xregex.h" |
12 | #include <math.h> | 12 | #include <math.h> |
13 | extern char **environ; | ||
13 | 14 | ||
14 | /* This is a NOEXEC applet. Be very careful! */ | 15 | /* This is a NOEXEC applet. Be very careful! */ |
15 | 16 | ||
@@ -393,8 +394,6 @@ enum { NPRIMES = sizeof(PRIMES) / sizeof(unsigned) }; | |||
393 | 394 | ||
394 | /* globals */ | 395 | /* globals */ |
395 | 396 | ||
396 | extern char **environ; | ||
397 | |||
398 | static var * V[_intvarcount_]; | 397 | static var * V[_intvarcount_]; |
399 | static chain beginseq, mainseq, endseq, *seq; | 398 | static chain beginseq, mainseq, endseq, *seq; |
400 | static int nextrec, nextfile; | 399 | static int nextrec, nextfile; |