[solaris] Fix iswxdigit_l() support function prototype

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
This commit is contained in:
Michal Gorny 2016-10-18 16:54:54 +00:00
parent efc536ee9d
commit 376548c34c
1 changed files with 1 additions and 1 deletions

View 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);
}