diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-02-08 10:46:32 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-02-08 10:46:32 -0800 |
commit | 7f3e75f87a93265e5a9feb1ba320f4b19f29cd67 (patch) | |
tree | a464767395626b73c014b06fead1f60686980468 /string | |
parent | b84660a888f8c6ac5410f7571ee40b120873dc06 (diff) | |
download | glibc-7f3e75f87a93265e5a9feb1ba320f4b19f29cd67.zip glibc-7f3e75f87a93265e5a9feb1ba320f4b19f29cd67.tar.gz glibc-7f3e75f87a93265e5a9feb1ba320f4b19f29cd67.tar.bz2 |
Remove dead variable in generic strcpy.
Diffstat (limited to 'string')
-rw-r--r-- | string/strcpy.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/string/strcpy.c b/string/strcpy.c index 9b713dc..64e030d 100644 --- a/string/strcpy.c +++ b/string/strcpy.c @@ -30,7 +30,6 @@ strcpy (dest, src) char c; char *__unbounded s = (char *__unbounded) src; const ptrdiff_t off = dest - s - 1; - size_t n; do { @@ -39,8 +38,6 @@ strcpy (dest, src) } while (c != '\0'); - n = s - src; - return dest; } libc_hidden_builtin_def (strcpy) |