]> diplodocus.org Git - nmh/blobdiff - sbr/putenv.c
A-ha! automake has support for tests expected to fail; use that.
[nmh] / sbr / putenv.c
index fb4a77ce9d69f5f0b441073086635220075e56ba..df187c045c2a863b35ebe4401d810fe3a42ae3f6 100644 (file)
@@ -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));