| //===--------------------------- cstddef ----------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is dual licensed under the MIT and the University of Illinois Open |
| // Source Licenses. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| offsetof(type,member-designator) |
| #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| #pragma GCC system_header |
| // Don't include our own <stddef.h>; we don't want to declare ::nullptr_t. |
| _LIBCPP_BEGIN_NAMESPACE_STD |
| #if defined(__CLANG_MAX_ALIGN_T_DEFINED) || defined(_GCC_MAX_ALIGN_T) |
| // Re-use the compiler's <stddef.h> max_align_t where possible. |
| typedef long double max_align_t; |
| _LIBCPP_END_NAMESPACE_STD |
| #endif // _LIBCPP_CSTDDEF |