diff options
-rw-r--r-- | tools/env/fw_env.c | 4 | ||||
-rw-r--r-- | tools/env/fw_env_main.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index 5c7505c0fdc..1420ac58a35 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw_env.c @@ -35,6 +35,10 @@ #include "fw_env.h" +struct common_args common_args; +struct printenv_args printenv_args; +struct setenv_args setenv_args; + #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d)) #define min(x, y) ({ \ diff --git a/tools/env/fw_env_main.c b/tools/env/fw_env_main.c index 3bec5b970e7..3706d8f1a61 100644 --- a/tools/env/fw_env_main.c +++ b/tools/env/fw_env_main.c @@ -49,10 +49,6 @@ static struct option long_options[] = { {NULL, 0, NULL, 0} }; -struct common_args common_args; -struct printenv_args printenv_args; -struct setenv_args setenv_args; - void usage_printenv(void) { |