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.17-442-ga065cef


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  a065ceffdf88637394eaaa1257c8aac2c1a3ffd4 (commit)
      from  a600e5cef53e10147932d910cdb2fdfc62afae4e (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=a065ceffdf88637394eaaa1257c8aac2c1a3ffd4

commit a065ceffdf88637394eaaa1257c8aac2c1a3ffd4
Author: Ondrej Bilka <neleai@seznam.cz>
Date:   Wed Mar 20 08:08:27 2013 +0100

    Do not warn about mblen, mbtowc and wctomb unused result.

diff --git a/ChangeLog b/ChangeLog
index 7d957d5..66e6638 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-03-20  OndÅ?ej Bílka  <neleai@seznam.cz>
+
+	[BZ 14176]
+	* stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
+
 2013-03-19  Roland McGrath  <roland@hack.frob.com>
 
 	* sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index f7a818a..4b83944 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -861,14 +861,14 @@ extern int qfcvt_r (long double __value, int __ndigit,
 __BEGIN_NAMESPACE_STD
 /* Return the length of the multibyte character
    in S, which is no longer than N.  */
-extern int mblen (const char *__s, size_t __n) __THROW __wur;
+extern int mblen (const char *__s, size_t __n) __THROW;
 /* Return the length of the given multibyte character,
    putting its `wchar_t' representation in *PWC.  */
 extern int mbtowc (wchar_t *__restrict __pwc,
-		   const char *__restrict __s, size_t __n) __THROW __wur;
+		   const char *__restrict __s, size_t __n) __THROW;
 /* Put the multibyte character represented
    by WCHAR in S, returning its length.  */
-extern int wctomb (char *__s, wchar_t __wchar) __THROW __wur;
+extern int wctomb (char *__s, wchar_t __wchar) __THROW;
 
 
 /* Convert a multibyte string to a wide char string.  */

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

Summary of changes:
 ChangeLog       |    5 +++++
 stdlib/stdlib.h |    6 +++---
 2 files changed, 8 insertions(+), 3 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]