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.
This commit is contained in:
Jeff Johnston
2004-11-24 22:34:15 +00:00
parent 16ac96ee69
commit c41a1cb7d8
4 changed files with 11 additions and 4 deletions

View File

@ -24,7 +24,7 @@
int
_DEFUN (putenv, (str),
_CONST char *str)
char *str)
{
return _putenv_r (_REENT, str);
}

View File

@ -33,7 +33,7 @@
int
_DEFUN (_putenv_r, (reent_ptr, str),
struct _reent *reent_ptr _AND
_CONST char *str)
char *str)
{
register char *p, *equal;
int rval;