From: Ulrich Drepper Date: Thu, 24 Feb 2000 07:16:18 +0000 (+0000) Subject: Don't declare argument as const. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8298662f0ee17d1eb628ea672e1e61f37046d5de;p=thirdparty%2Fglibc.git Don't declare argument as const. --- diff --git a/sysdeps/generic/putenv.c b/sysdeps/generic/putenv.c index 75fafad06d3..24e0c7e2506 100644 --- a/sysdeps/generic/putenv.c +++ b/sysdeps/generic/putenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1994-1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -51,7 +51,7 @@ extern char *alloca (); /* Put STRING, which is of the form "NAME=VALUE", in the environment. */ int putenv (string) - const char *string; + char *string; { const char *const name_end = strchr (string, '=');