diff options
Diffstat (limited to 'newlib/libc/stdlib/setenv.c')
-rw-r--r-- | newlib/libc/stdlib/setenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/setenv.c b/newlib/libc/stdlib/setenv.c index d423678..7e89494 100644 --- a/newlib/libc/stdlib/setenv.c +++ b/newlib/libc/stdlib/setenv.c @@ -33,8 +33,8 @@ extern int _unsetenv_r _PARAMS ((struct _reent *, const char *)); int _DEFUN (setenv, (name, value, rewrite), - _CONST char *name _AND - _CONST char *value _AND + _CONST char *name, + _CONST char *value, int rewrite) { return _setenv_r (_REENT, name, value, rewrite); |