blob: 0eeaab8b2852324cf3eafbc1096115818df27a8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _COMPAT_WCTYPE_H_
#define _COMPAT_WCTYPE_H_
#include_next <wctype.h>
/* We undef these until libcxx is fixed. Without this,
some things can fail to compile correctly, like
Boost. Issue #1716. */
#undef iswalpha
#undef iswblank
#undef iswcntrl
#undef iswdigit
#undef iswgraph
#undef iswlower
#undef iswprint
#undef iswpunct
#undef iswspace
#undef iswupper
#undef iswxdigit
#undef iswctype
#endif /* _COMPAT_WCTYPE_H_ */
|