Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/memset.c')
-rw-r--r--newlib/libc/string/memset.c3
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))
{