Marshall Clow | 354d39c | 2014-01-16 16:58:45 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
Chandler Carruth | 57b08b0 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Marshall Clow | 354d39c | 2014-01-16 16:58:45 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
David Chisnall | 06af2bb | 2012-02-29 13:17:28 +0000 | [diff] [blame] | 9 | #define iswalpha sun_iswalpha |
| 10 | #define iswupper sun_iswupper |
| 11 | #define iswlower sun_iswlower |
| 12 | #define iswdigit sun_iswdigit |
| 13 | #define iswxdigit sun_iswxdigit |
| 14 | #define iswalnum sun_iswalnum |
| 15 | #define iswspace sun_iswspace |
| 16 | #define iswpunct sun_iswpunct |
| 17 | #define iswprint sun_iswprint |
| 18 | #define iswgraph sun_iswgraph |
| 19 | #define iswcntrl sun_iswcntrl |
| 20 | #define iswctype sun_iswctype |
| 21 | #define towlower sun_towlower |
| 22 | #define towupper sun_towupper |
| 23 | #define wcswcs sun_wcswcs |
| 24 | #define wcswidth sun_wcswidth |
| 25 | #define wcwidth sun_wcwidth |
| 26 | #define wctype sun_wctype |
David Chisnall | 04e5ce2 | 2012-03-02 10:56:04 +0000 | [diff] [blame] | 27 | #define _WCHAR_T 1 |
David Chisnall | 06af2bb | 2012-02-29 13:17:28 +0000 | [diff] [blame] | 28 | #include_next "wchar.h" |
Louis Dionne | 6b77ebd | 2019-10-23 10:40:15 -0700 | [diff] [blame] | 29 | #undef iswalpha |
David Chisnall | 06af2bb | 2012-02-29 13:17:28 +0000 | [diff] [blame] | 30 | #undef iswupper |
| 31 | #undef iswlower |
| 32 | #undef iswdigit |
| 33 | #undef iswxdigit |
| 34 | #undef iswalnum |
| 35 | #undef iswspace |
| 36 | #undef iswpunct |
| 37 | #undef iswprint |
| 38 | #undef iswgraph |
| 39 | #undef iswcntrl |
| 40 | #undef iswctype |
| 41 | #undef towlower |
| 42 | #undef towupper |
| 43 | #undef wcswcs |
| 44 | #undef wcswidth |
| 45 | #undef wcwidth |
| 46 | #undef wctype |