From: Ulrich Drepper Date: Thu, 24 Feb 2000 07:16:51 +0000 (+0000) Subject: (putenv): Don't declare argument as const. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8d021b2f2e716c16fce5300a15c3a581941cc01;p=thirdparty%2Fglibc.git (putenv): Don't declare argument as const. --- 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