From: Jakub Jelinek Date: Thu, 10 Mar 2011 18:04:08 +0000 (-0500) Subject: Remove __restrict quals from wmemcmp prototype. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a29825d63f8e6c429c4fe425c3a0ed70a3245cb;p=thirdparty%2Fglibc.git Remove __restrict quals from wmemcmp prototype. (cherry picked from commit c6e13027abd4b9c2d694fb4d8b28ab8290ea5971) --- diff --git a/ChangeLog b/ChangeLog index 850d3007132..7a71e6ca07f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-03-10 Jakub Jelinek + + * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers. + 2011-03-10 Ulrich Drepper [BZ #12510] diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index fc2c6a4422f..e64e8e25a39 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. */