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 --- coreutils/env.c | 2 +- coreutils/printenv.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils') diff --git a/coreutils/env.c b/coreutils/env.c index f47d450..2a271f7 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -32,6 +32,7 @@ #include "busybox.h" #include #include /* struct option */ +extern char **environ; #if ENABLE_FEATURE_ENV_LONG_OPTIONS static const struct option env_long_options[] = { @@ -49,7 +50,6 @@ int env_main(int argc, char** argv) char **ep; unsigned opt; llist_t *unset_env = NULL; - extern char **environ; opt_complementary = "u::"; #if ENABLE_FEATURE_ENV_LONG_OPTIONS diff --git a/coreutils/printenv.c b/coreutils/printenv.c index 1d41eeb..935f52d 100644 --- a/coreutils/printenv.c +++ b/coreutils/printenv.c @@ -12,11 +12,11 @@ #include #include #include "busybox.h" +extern char **environ; int printenv_main(int argc, char **argv); int printenv_main(int argc, char **argv) { - extern char **environ; int e = 0; /* no variables specified, show whole env */ -- cgit v1.1