From: Jakub Jelinek Date: Thu, 10 Mar 2011 18:04:08 +0000 (-0500) Subject: Remove __restrict quals from wmemcmp prototype. X-Git-Tag: glibc-2.14~211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6e13027abd4b9c2d694fb4d8b28ab8290ea5971;p=thirdparty%2Fglibc.git Remove __restrict quals from wmemcmp prototype. --- diff --git a/ChangeLog b/ChangeLog index 0de681e9f47..72d1d03bb6a 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 5f341f39918..fdcfdd68ea6 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. */