From e8d021b2f2e716c16fce5300a15c3a581941cc01 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 24 Feb 2000 07:16:51 +0000 Subject: [PATCH] (putenv): Don't declare argument as const. --- stdlib/stdlib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 8a47b81ed9d..d2834950077 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc. +/* Copyright (C) 1991-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 @@ -537,7 +537,7 @@ extern char *__secure_getenv __P ((__const char *__name)); /* The SVID says this is in , but this seems a better place. */ /* Put STRING, which is of the form "NAME=VALUE", in the environment. If there is no `=', remove NAME from the environment. */ -extern int putenv __P ((__const char *__string)); +extern int putenv __P ((char *__string)); #endif #ifdef __USE_BSD -- 2.47.3