From c41a1cb7d8162094bec6f41e9a82900be1419b0f Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Wed, 24 Nov 2004 22:34:15 +0000 Subject: 2004-11-24 Jeff Johnston * 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. --- newlib/libc/stdlib/putenv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libc/stdlib/putenv.c') diff --git a/newlib/libc/stdlib/putenv.c b/newlib/libc/stdlib/putenv.c index 8ee67d7d5..978f7c5d6 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); } -- cgit v1.2.3