diff options
Diffstat (limited to 'newlib/libc/stdlib/putenv.c')
-rw-r--r-- | newlib/libc/stdlib/putenv.c | 2 |
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); } |