* nlsfuncs.cc (wcscoll): Add "__restrict" to definition.
(wcsxfrm): Ditto.
This commit is contained in:
parent
db026d86d8
commit
a50f8f5973
@ -1,3 +1,8 @@
|
|||||||
|
2013-11-26 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* nlsfuncs.cc (wcscoll): Add "__restrict" to definition.
|
||||||
|
(wcsxfrm): Ditto.
|
||||||
|
|
||||||
2013-11-26 Corinna Vinschen <corinna@vinschen.de>
|
2013-11-26 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* common.din: Export posix_spawn[...] functions.
|
* common.din: Export posix_spawn[...] functions.
|
||||||
|
@ -1150,7 +1150,7 @@ __get_current_collate_codeset (void)
|
|||||||
transformation. The advantage is that we don't need any files with
|
transformation. The advantage is that we don't need any files with
|
||||||
collation information. */
|
collation information. */
|
||||||
extern "C" int
|
extern "C" int
|
||||||
wcscoll (const wchar_t *ws1, const wchar_t *ws2)
|
wcscoll (const wchar_t *__restrict ws1, const wchar_t *__restrict ws2)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -1204,7 +1204,7 @@ __collate_range_cmp (int c1, int c2)
|
|||||||
}
|
}
|
||||||
|
|
||||||
extern "C" size_t
|
extern "C" size_t
|
||||||
wcsxfrm (wchar_t *ws1, const wchar_t *ws2, size_t wsn)
|
wcsxfrm (wchar_t *__restrict ws1, const wchar_t *__restrict ws2, size_t wsn)
|
||||||
{
|
{
|
||||||
size_t ret;
|
size_t ret;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user