]> sourceware.org Git - newlib-cygwin.git/commitdiff
* environ.cc (putenv): Accommodate recent newlib change in argument to putenv.
authorChristopher Faylor <me@cgf.cx>
Fri, 26 Nov 2004 04:21:47 +0000 (04:21 +0000)
committerChristopher Faylor <me@cgf.cx>
Fri, 26 Nov 2004 04:21:47 +0000 (04:21 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/environ.cc

index 600ca065346b14bf51c95f9b8e8130f735f013ea..12a631025a2b4f9f0d2969ea3cd496d4c815eaef 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-25  Christopher Faylor  <cgf@timesys.com>
+
+       * environ.cc (putenv): Accommodate recent newlib change in argument to
+       putenv.
+
 2004-11-25  Christopher Faylor  <cgf@timesys.com>
 
        * child_info.h (child_info_spawn::hexec_proc): Eliminate.
index 90c828e72df7d62f06476a971596a4f0a6f2e4dc..4881592d9af5233262f1b7f19f01a65f4cc1c299 100644 (file)
@@ -292,7 +292,7 @@ _addenv (const char *name, const char *value, int overwrite)
 
 /* putenv Sets an environment variable */
 extern "C" int
-putenv (const char *str)
+putenv (char *str)
 {
   int res;
   if ((res = check_null_empty_str (str)))
This page took 0.038543 seconds and 5 git commands to generate.