1 ///////////////////////////////////////////////////////////////////////////////
4 /// \brief Common includes, definitions, system-specific things etc.
6 /// This file is used also by the lzma command line tool, that's why this
7 /// file is separate from common.h.
9 // Author: Lasse Collin
11 // This file has been put into the public domain.
12 // You can do whatever you want with this file.
14 ///////////////////////////////////////////////////////////////////////////////
16 #ifndef LZMA_SYSDEFS_H
17 #define LZMA_SYSDEFS_H
27 // Get standard-compliant stdio functions under MinGW and MinGW-w64.
29 # define __USE_MINGW_ANSI_STDIO 1
35 #ifdef HAVE_INTTYPES_H
36 # include <inttypes.h>
39 // C99 says that inttypes.h always includes stdint.h, but some systems
40 // don't do that, and require including stdint.h separately.
45 // Some pre-C99 systems have SIZE_MAX in limits.h instead of stdint.h. The
46 // limits are also used to figure out some macros missing from pre-C99 systems.
49 // Be more compatible with systems that have non-conforming inttypes.h.
50 // We assume that int is 32-bit and that long is either 32-bit or 64-bit.
51 // Full Autoconf test could be more correct, but this should work well enough.
52 // Note that this duplicates some code from lzma.h, but this is better since
53 // we can work without inttypes.h thanks to Autoconf tests.
55 # if UINT_MAX != 4294967295U
56 # error UINT32_C is not defined and unsigned int is not 32-bit.
58 # define UINT32_C(n) n ## U
61 # define UINT32_MAX UINT32_C(4294967295)
73 #if ULONG_MAX == 4294967295UL
75 # define UINT64_C(n) n ## ULL
88 # define UINT64_C(n) n ## UL
101 # define UINT64_MAX UINT64_C(18446744073709551615)
104 // Incorrect(?) SIZE_MAX:
105 // - Interix headers typedef size_t to unsigned long,
106 // but a few lines later define SIZE_MAX to INT32_MAX.
107 // - SCO OpenServer (x86) headers typedef size_t to unsigned int
108 // but define SIZE_MAX to INT32_MAX.
109 #if defined(__INTERIX) || defined(_SCO_DS)
113 // The code currently assumes that size_t is either 32-bit or 64-bit.
115 # if SIZEOF_SIZE_T == 4
116 # define SIZE_MAX UINT32_MAX
117 # elif SIZEOF_SIZE_T == 8
118 # define SIZE_MAX UINT64_MAX
120 # error size_t is not 32-bit or 64-bit
123 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
124 # error size_t is not 32-bit or 64-bit
130 // Pre-C99 systems lack stdbool.h. All the code in XZ Utils must be written
131 // so that it works with fake bool type, for example:
133 // bool foo = (flags & 0x100) != 0;
134 // bool bar = !!(flags & 0x100);
136 // This works with the real C99 bool but breaks with fake bool:
138 // bool baz = (flags & 0x100);
140 #ifdef HAVE_STDBOOL_H
141 # include <stdbool.h>
144 typedef unsigned char _Bool
;
149 # define __bool_true_false_are_defined 1
154 // As of MSVC 2013, inline and restrict are supported with
155 // non-standard keywords.
156 #if defined(_WIN32) && defined(_MSC_VER)
158 # define inline __inline
161 # define restrict __restrict
170 #define memzero(s, n) memset(s, 0, n)
172 // NOTE: Avoid using MIN() and MAX(), because even conditionally defining
173 // those macros can cause some portability trouble, since on some systems
174 // the system headers insist defining their own versions.
175 #define my_min(x, y) ((x) < (y) ? (x) : (y))
176 #define my_max(x, y) ((x) > (y) ? (x) : (y))
179 # define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
182 #if defined(__GNUC__) \
183 && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4)
184 # define lzma_attr_alloc_size(x) __attribute__((__alloc_size__(x)))
186 # define lzma_attr_alloc_size(x)