This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.13-45-gc6e1302


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  c6e13027abd4b9c2d694fb4d8b28ab8290ea5971 (commit)
      from  f6ce0f974b727437e383f69d17d51962c86bf31b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=c6e13027abd4b9c2d694fb4d8b28ab8290ea5971

commit c6e13027abd4b9c2d694fb4d8b28ab8290ea5971
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Mar 10 13:04:08 2011 -0500

    Remove __restrict quals from wmemcmp prototype.

diff --git a/ChangeLog b/ChangeLog
index 0de681e..72d1d03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-10  Jakub Jelinek  <jakub@redhat.com>
+
+	* wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
+
 2011-03-10  Ulrich Drepper  <drepper@gmail.com>
 
 	[BZ #12510]
diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h
index 5f341f3..fdcfdd6 100644
--- a/wcsmbs/wchar.h
+++ b/wcsmbs/wchar.h
@@ -319,8 +319,7 @@ extern wchar_t *wmemchr (__const wchar_t *__s, wchar_t __c, size_t __n)
 #endif
 
 /* Compare N wide characters of S1 and S2.  */
-extern int wmemcmp (__const wchar_t *__restrict __s1,
-		    __const wchar_t *__restrict __s2, size_t __n)
+extern int wmemcmp (__const wchar_t *__s1, __const wchar_t *__s2, size_t __n)
      __THROW __attribute_pure__;
 
 /* Copy N wide characters of SRC to DEST.  */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    4 ++++
 wcsmbs/wchar.h |    3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]