]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Don't declare argument as const.
authorUlrich Drepper <drepper@redhat.com>
Thu, 24 Feb 2000 07:16:18 +0000 (07:16 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 24 Feb 2000 07:16:18 +0000 (07:16 +0000)
sysdeps/generic/putenv.c

index 75fafad06d32a2151fa8c3e3f557b9e986da683e..24e0c7e2506a35826a7c507229804386235ab905 100644 (file)
@@ -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, '=');