aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/putenv.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2004-11-24 22:34:15 +0000
committerJeff Johnston <jjohnstn@redhat.com>2004-11-24 22:34:15 +0000
commitc41a1cb7d8162094bec6f41e9a82900be1419b0f (patch)
treef750bc569041aafc2c62f972361eb9ed567b8737 /newlib/libc/stdlib/putenv.c
parent16ac96ee6995fa023a32794333cf997fb695cd25 (diff)
downloadnewlib-c41a1cb7d8162094bec6f41e9a82900be1419b0f.zip
newlib-c41a1cb7d8162094bec6f41e9a82900be1419b0f.tar.gz
newlib-c41a1cb7d8162094bec6f41e9a82900be1419b0f.tar.bz2
2004-11-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdlib.h (putenv, _putenv_r): Change to remove const for value string parameter. * libc/stdlib/putenv.c: Ditto. * libc/stdlib/putenv_r.c: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/putenv.c')
-rw-r--r--newlib/libc/stdlib/putenv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/putenv.c b/newlib/libc/stdlib/putenv.c
index 8ee67d7..978f7c5 100644
--- a/newlib/libc/stdlib/putenv.c
+++ b/newlib/libc/stdlib/putenv.c
@@ -24,7 +24,7 @@
int
_DEFUN (putenv, (str),
- _CONST char *str)
+ char *str)
{
return _putenv_r (_REENT, str);
}