blob: 42f0bcee36c51f4c96bbf1c617d609ae89629e02 (
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_WCHAR_H_
#define _COMPAT_WCHAR_H_
#include_next <wchar.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_WCHAR_H_ */
|