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

index 8a47b81ed9d28fbb08d416446311f450888645cd..d28349500779954b021256b2a5c9031e430f5c5a 100644 (file)
@@ -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 <stdio.h>, 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