* environ.cc (putenv): Accommodate recent newlib change in argument to putenv.
This commit is contained in:
parent
8cb359d947
commit
6903729981
|
@ -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.
|
||||
|
|
|
@ -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)))
|
||||
|
|
Loading…
Reference in New Issue