diff options
author | Ralf Corsepius <ralf.corsepius@rtems.org> | 2011-08-23 12:03:55 +0000 |
---|---|---|
committer | Ralf Corsepius <ralf.corsepius@rtems.org> | 2011-08-23 12:03:55 +0000 |
commit | 1c5c40f638cf66cced5ed614a3e937a3d6be79f8 (patch) | |
tree | e324ae1033a065a080fc1b0a15006d48a72e4ca2 /newlib/libc/stdlib/setenv_r.c | |
parent | da344d0ea92b1e566f53b1bb31eb4ac8bd7b6c5f (diff) | |
download | newlib-1c5c40f638cf66cced5ed614a3e937a3d6be79f8.zip newlib-1c5c40f638cf66cced5ed614a3e937a3d6be79f8.tar.gz newlib-1c5c40f638cf66cced5ed614a3e937a3d6be79f8.tar.bz2 |
2011-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/stdlib/putenv_r.c: Use "strchr" instead of obsolete "index".
* libc/stdlib/setenv_r.c: Use "memcpy" instead of obsolete "bcopy".
Diffstat (limited to 'newlib/libc/stdlib/setenv_r.c')
-rw-r--r-- | newlib/libc/stdlib/setenv_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/setenv_r.c b/newlib/libc/stdlib/setenv_r.c index d73ba39..f9ff2c1 100644 --- a/newlib/libc/stdlib/setenv_r.c +++ b/newlib/libc/stdlib/setenv_r.c @@ -110,7 +110,7 @@ _DEFUN (_setenv_r, (reent_ptr, name, value, rewrite), ENV_UNLOCK; return (-1); } - bcopy ((char *) *p_environ, (char *) P, cnt * sizeof (char *)); + memcpy((char *) P,(char *) *p_environ, cnt * sizeof (char *)); *p_environ = P; } (*p_environ)[cnt + 1] = NULL; |