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:
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/string/memset.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 10d5f903b..bc0eec6c5 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-25 Christopher Faylor <cgf@redhat.com>
+
+ * libc/string/memset.c (memset): Minor optimization: Use new 'd'
+ variable, introduced below, everywhere.
+
2002-11-25 Kazu Hirata <kazu@cs.umass.edu>
* libc/string/memset.c (memset): Make it safe even if
diff --git a/newlib/libc/string/memset.c b/newlib/libc/string/memset.c
index eceff8e9c..41b7d03ba 100644
--- a/newlib/libc/string/memset.c
+++ b/newlib/libc/string/memset.c
@@ -103,7 +103,7 @@ _DEFUN (memset, (m, c, n),
while (n--)
{
- *s++ = (char)c;
+ *s++ = (char)d;
}
return m;