[Flang] remove whole-archive option for AIX linker (#76039)
[llvm-project.git] / clang / lib / Headers / __stddef_wchar_t.h
blob16a6186512c0c35367b3949189ce8080e7b5f714
1 /*===---- __stddef_wchar.h - Definition of wchar_t -------------------------===
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
7 *===-----------------------------------------------------------------------===
8 */
10 #if !defined(__cplusplus) || (defined(_MSC_VER) && !_NATIVE_WCHAR_T_DEFINED)
12 #ifndef _WCHAR_T
13 #define _WCHAR_T
15 #ifdef _MSC_EXTENSIONS
16 #define _WCHAR_T_DEFINED
17 #endif
19 typedef __WCHAR_TYPE__ wchar_t;
21 #endif
23 #endif