(xputenv): Remove parameter's const qualifier.

This commit is contained in:
Jim Meyering 2001-08-14 07:18:34 +00:00
parent 787ac7c341
commit 7eaedbe05f
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ static struct option const longopts[] =
/* Add VAL to the environment, checking for out of memory errors. */
static void
xputenv (const char *val)
xputenv (char *val)
{
if (putenv (val))
xalloc_die ();