diff options
Diffstat (limited to 'archival/bz')
-rw-r--r-- | archival/bz/bzlib_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/bz/bzlib_private.h b/archival/bz/bzlib_private.h index 48676a391..6430ce407 100644 --- a/archival/bz/bzlib_private.h +++ b/archival/bz/bzlib_private.h @@ -33,7 +33,7 @@ typedef unsigned char Bool; #define False ((Bool)0) #if BZ_LIGHT_DEBUG -static void bz_assert_fail(int errcode) ATTRIBUTE_NORETURN; +static void bz_assert_fail(int errcode) NORETURN; #define AssertH(cond, errcode) \ do { \ if (!(cond)) \ @@ -170,7 +170,7 @@ typedef struct EState { /* map of bytes used in block */ int32_t nInUse; - Bool inUse[256] __attribute__(( aligned(sizeof(long)) )); + Bool inUse[256] ALIGNED(sizeof(long)); uint8_t unseqToSeq[256]; /* stuff for coding the MTF values */ |