X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/81a21a9a97d8633f6d6231e31fdb6e328d0d3ff2..4d6435dbde12837bdf4b4d594e0440392df4b9d3:/sbr/putenv.c?ds=sidebyside diff --git a/sbr/putenv.c b/sbr/putenv.c index fb4a77ce..df187c04 100644 --- a/sbr/putenv.c +++ b/sbr/putenv.c @@ -2,8 +2,6 @@ /* * 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. @@ -25,8 +23,8 @@ static int nvmatch (char *, char *); 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));