diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-03-10 13:04:08 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-03-10 13:04:08 -0500 |
commit | c6e13027abd4b9c2d694fb4d8b28ab8290ea5971 (patch) | |
tree | ee206d447b95291175bd180141dc873a9867b4d8 | |
parent | f6ce0f974b727437e383f69d17d51962c86bf31b (diff) | |
download | glibc-c6e13027abd4b9c2d694fb4d8b28ab8290ea5971.zip glibc-c6e13027abd4b9c2d694fb4d8b28ab8290ea5971.tar.gz glibc-c6e13027abd4b9c2d694fb4d8b28ab8290ea5971.tar.bz2 |
Remove __restrict quals from wmemcmp prototype.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | wcsmbs/wchar.h | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -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. */ |