summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko2010-06-12 15:51:29 +0200
committerDenys Vlasenko2010-06-12 15:51:29 +0200
commitd0db975a9f399140ddb7dacdfffaf098df3e249b (patch)
tree4b9cbdad519a80e410dea6c2a917d77bd3209ad5 /include
parent58cdca3984beb4e1019ef5ccf1dd7361f032a9a6 (diff)
downloadbusybox-d0db975a9f399140ddb7dacdfffaf098df3e249b.zip
busybox-d0db975a9f399140ddb7dacdfffaf098df3e249b.tar.gz
post-1.16.1 fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/platform.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h
index a41daa0..804fab4 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -291,10 +291,12 @@ typedef unsigned smalluint;
#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
# define ALIGN1 __attribute__((aligned(1)))
# define ALIGN2 __attribute__((aligned(2)))
+# define ALIGN4 __attribute__((aligned(4)))
#else
/* Arches which MUST have 2 or 4 byte alignment for everything are here */
# define ALIGN1
# define ALIGN2
+# define ALIGN4
#endif