diff options
Diffstat (limited to 'newlib/libc/string')
-rw-r--r-- | newlib/libc/string/memset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/memset.c b/newlib/libc/string/memset.c index f6ec46b9a..a5890c884 100644 --- a/newlib/libc/string/memset.c +++ b/newlib/libc/string/memset.c @@ -56,10 +56,9 @@ _DEFUN (memset, (m, c, n), return m; #else char *s = (char *) m; - int count, i; + int i; unsigned long buffer; unsigned long *aligned_addr; - unsigned char *unaligned_addr; if (!TOO_SMALL (n) && !UNALIGNED (m)) { |