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 /wcsmbs | |
parent | f6ce0f974b727437e383f69d17d51962c86bf31b (diff) | |
download | glibc-c6e13027abd4b9c2d694fb4d8b28ab8290ea5971.tar.gz glibc-c6e13027abd4b9c2d694fb4d8b28ab8290ea5971.tar.xz glibc-c6e13027abd4b9c2d694fb4d8b28ab8290ea5971.zip |
Remove __restrict quals from wmemcmp prototype.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wchar.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index 5f341f3991..fdcfdd68ea 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. */ |