From 8298662f0ee17d1eb628ea672e1e61f37046d5de Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 24 Feb 2000 07:16:18 +0000 Subject: [PATCH] Don't declare argument as const. --- sysdeps/generic/putenv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, '='); -- 2.47.2