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.23-416-g6b4a158


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  6b4a158ef4af898f528243a54ad11807b5db2d79 (commit)
      from  cda672e7bd2e2d11bae1e4bf5d2dd4532a610ebd (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6b4a158ef4af898f528243a54ad11807b5db2d79

commit 6b4a158ef4af898f528243a54ad11807b5db2d79
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sat Jun 4 09:16:12 2016 +0200

    Use __typeof instead of typeof

diff --git a/ChangeLog b/ChangeLog
index fac360e..adc53d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-06-04  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* include/wchar.h (__wmemset): Use __typeof.
+
 2016-06-03  Carlos O'Donell  <carlos@redhat.com>
 
 	* include/wchar.h (__wmemset): Declare function without typeof.
diff --git a/include/wchar.h b/include/wchar.h
index 96b0438..6272130 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -102,7 +102,7 @@ extern int __wcscoll (const wchar_t *__s1, const wchar_t *__s2) __THROW;
 libc_hidden_proto (__wcscoll)
 libc_hidden_proto (wcspbrk)
 
-extern wchar_t *__wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW;
+extern __typeof (wmemset) __wmemset;
 extern wchar_t *__wmemchr (const wchar_t *__s, wchar_t __c, size_t __n)
      __THROW __attribute_pure__;
 libc_hidden_proto (wmemchr)

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

Summary of changes:
 ChangeLog       |    4 ++++
 include/wchar.h |    2 +-
 2 files changed, 5 insertions(+), 1 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]