Warning: This file is not a C or C++ file. It does not have highlighting.

1/*===---- __stddef_wchar.h - Definition of wchar_t -------------------------===
2 *
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
6 *
7 *===-----------------------------------------------------------------------===
8 */
9
10#if !defined(__cplusplus) || (defined(_MSC_VER) && !_NATIVE_WCHAR_T_DEFINED)
11
12#ifndef _WCHAR_T
13#define _WCHAR_T
14
15#ifdef _MSC_EXTENSIONS
16#define _WCHAR_T_DEFINED
17#endif
18
19typedef __WCHAR_TYPE__ wchar_t;
20
21#endif
22
23#endif
24

Warning: This file is not a C or C++ file. It does not have highlighting.

source code of clang/lib/Headers/__stddef_wchar_t.h