diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-12 15:51:29 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-12 15:51:29 +0200 |
commit | d0db975a9f399140ddb7dacdfffaf098df3e249b (patch) | |
tree | 4b9cbdad519a80e410dea6c2a917d77bd3209ad5 /include | |
parent | 58cdca3984beb4e1019ef5ccf1dd7361f032a9a6 (diff) | |
download | busybox-w32-d0db975a9f399140ddb7dacdfffaf098df3e249b.tar.gz busybox-w32-d0db975a9f399140ddb7dacdfffaf098df3e249b.tar.bz2 busybox-w32-d0db975a9f399140ddb7dacdfffaf098df3e249b.zip |
post-1.16.1 fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index a41daa08c..804fab4e1 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -291,10 +291,12 @@ typedef unsigned smalluint; | |||
291 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ | 291 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ |
292 | # define ALIGN1 __attribute__((aligned(1))) | 292 | # define ALIGN1 __attribute__((aligned(1))) |
293 | # define ALIGN2 __attribute__((aligned(2))) | 293 | # define ALIGN2 __attribute__((aligned(2))) |
294 | # define ALIGN4 __attribute__((aligned(4))) | ||
294 | #else | 295 | #else |
295 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ | 296 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ |
296 | # define ALIGN1 | 297 | # define ALIGN1 |
297 | # define ALIGN2 | 298 | # define ALIGN2 |
299 | # define ALIGN4 | ||
298 | #endif | 300 | #endif |
299 | 301 | ||
300 | 302 | ||