btrfs: [] on the end of a struct field is a variable length array.
[haiku.git] / headers / libs / libc++ / cstddef
blobedd106c001bcb785ddc0a2c5394069b8d41adc52
1 // -*- C++ -*-
2 //===--------------------------- cstddef ----------------------------------===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is dual licensed under the MIT and the University of Illinois Open
7 // Source Licenses. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
11 #ifndef _LIBCPP_CSTDDEF
12 #define _LIBCPP_CSTDDEF
15     cstddef synopsis
17 Macros:
19     offsetof(type,member-designator)
20     NULL
22 namespace std
25 Types:
27     ptrdiff_t
28     size_t
29     max_align_t
30     nullptr_t
32 }  // std
36 #include <__config>
38 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
39 #pragma GCC system_header
40 #endif
42 // Don't include our own <stddef.h>; we don't want to declare ::nullptr_t.
43 #include_next <stddef.h>
44 #include <__nullptr>
46 _LIBCPP_BEGIN_NAMESPACE_STD
48 using ::ptrdiff_t;
49 using ::size_t;
51 #if defined(__CLANG_MAX_ALIGN_T_DEFINED) || defined(_GCC_MAX_ALIGN_T)
52 // Re-use the compiler's <stddef.h> max_align_t where possible.
53 using ::max_align_t;
54 #else
55 typedef long double max_align_t;
56 #endif
58 _LIBCPP_END_NAMESPACE_STD
60 #endif  // _LIBCPP_CSTDDEF