Patch from Denis Vlasenko to constify things and fix a few typos.

This commit is contained in:
Rob Landley
2006-02-22 17:01:00 +00:00
parent fb16d5c6aa
commit 0a7c8ef6e2
9 changed files with 74 additions and 54 deletions

View File

@@ -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;