summaryrefslogtreecommitdiff
path: root/archival/bz
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-05 09:18:54 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-05 09:18:54 +0000
commita60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch)
treef59bc665cfe3d2d32622450d80523e3c1265e501 /archival/bz
parentf6efccc0659a2e2978f2021153f34ce92257ad2b (diff)
downloadbusybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz
busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.bz2
busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'archival/bz')
-rw-r--r--archival/bz/bzlib_private.h4
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;
33#define False ((Bool)0) 33#define False ((Bool)0)
34 34
35#if BZ_LIGHT_DEBUG 35#if BZ_LIGHT_DEBUG
36static void bz_assert_fail(int errcode) ATTRIBUTE_NORETURN; 36static void bz_assert_fail(int errcode) NORETURN;
37#define AssertH(cond, errcode) \ 37#define AssertH(cond, errcode) \
38do { \ 38do { \
39 if (!(cond)) \ 39 if (!(cond)) \
@@ -170,7 +170,7 @@ typedef struct EState {
170 170
171 /* map of bytes used in block */ 171 /* map of bytes used in block */
172 int32_t nInUse; 172 int32_t nInUse;
173 Bool inUse[256] __attribute__(( aligned(sizeof(long)) )); 173 Bool inUse[256] ALIGNED(sizeof(long));
174 uint8_t unseqToSeq[256]; 174 uint8_t unseqToSeq[256];
175 175
176 /* stuff for coding the MTF values */ 176 /* stuff for coding the MTF values */