/*
* getcpy.c -- copy a string in managed memory
*
- * THIS IS OBSOLETE. NEED TO REPLACE ALL OCCURENCES
+ * THIS IS OBSOLETE. NEED TO REPLACE ALL OCCURRENCES
* OF GETCPY WITH STRDUP. BUT THIS WILL REQUIRE
* CHANGING PARTS OF THE CODE TO DEAL WITH NULL VALUES.
*
- * $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.
char *
-getcpy (char *str)
+getcpy (const char *str)
{
char *cp;
size_t len;