forked from OSchip/llvm-project
[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:
parent
efc536ee9d
commit
376548c34c
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue