diff options
Diffstat (limited to 'coreutils/env.c')
-rw-r--r-- | coreutils/env.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index d59e738..156f4e7 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -59,8 +59,9 @@ static const struct option env_long_options[] = { extern int env_main(int argc, char** argv) { + static char *cleanenv[1] = { NULL }; + char **ep, *p; - char *cleanenv[1] = { NULL }; unsigned long opt; llist_t *unset_env = NULL; extern char **environ; |