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:
authorChristopher Faylor <me@cgf.cx>2002-11-26 00:11:58 +0300
committerChristopher Faylor <me@cgf.cx>2002-11-26 00:11:58 +0300
commitd90f3dc1baa701ddc856b484aeac7c5a978029ac (patch)
tree5aebbebb47feff4690580e861878485f38f283ec
parentf24585c6bb565026fe4e98f4b48219487c5877a8 (diff)
* libc/string/memset.c (memset): Minor optimization: Use new 'd' variable,
introduced below, everywhere.
-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;