/*
* putenv.c -- (un)set an envariable
*
- * $Id$
- *
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
int
m_putenv (char *name, char *value)
{
- register int i;
- register char **ep, **nep, *cp;
+ int i;
+ char **ep, **nep, *cp;
cp = mh_xmalloc ((size_t) (strlen (name) + strlen (value) + 2));