[solaris] Fix iswxdigit_l() support function prototype
authorMichal Gorny <mgorny@gentoo.org>
Tue, 18 Oct 2016 16:54:54 +0000 (16:54 +0000)
committerMichal Gorny <mgorny@gentoo.org>
Tue, 18 Oct 2016 16:54:54 +0000 (16:54 +0000)
Fix the iswxdigit_l() function prototype to take wint_t parameter
instead of incorrect wchar_t.

Differential Revision: https://reviews.llvm.org/D25431

llvm-svn: 284493

libcxx/src/support/solaris/xlocale.c

index 9125eea..802829c 100644 (file)
@@ -19,7 +19,7 @@ int isxdigit_l(int __c, locale_t __l) {
     return isxdigit(__c);
 }
 
-int iswxdigit_l(wchar_t __c, locale_t __l) {
+int iswxdigit_l(wint_t __c, locale_t __l) {
     return isxdigit(__c);
 }