Use __wcsoll only if _LIBC.

This commit is contained in:
Ulrich Drepper 2001-08-17 18:15:15 +00:00
parent 1d3884574e
commit 9d051d6423
1 changed files with 4 additions and 0 deletions

View File

@ -6388,7 +6388,11 @@ byte_re_match_2_internal (bufp, string1, size1,string2, size2, pos,
/* If wcscoll(the collating symbol, whole string) > 0,
any substring of the string never match with the
collating symbol. */
# ifdef _LIBC
if (__wcscoll (workp, d) > 0)
# else
if (wcscoll (workp, d) > 0)
# endif
{
workp += length + 1;
continue;