summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-01-31 09:53:53 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-01-31 09:53:53 +0000
commit9f4a1e1c75e86a38da22a3e82980fcddc4e58717 (patch)
tree707fdec25c2510d52f3ba6b2e4da15ce9089efd0 /include
parentdfe6e74157e98a696b60c586a4ed0a35b9362838 (diff)
downloadbusybox-w32-9f4a1e1c75e86a38da22a3e82980fcddc4e58717.tar.gz
busybox-w32-9f4a1e1c75e86a38da22a3e82980fcddc4e58717.tar.bz2
busybox-w32-9f4a1e1c75e86a38da22a3e82980fcddc4e58717.zip
- add and use ATTRIBUTE_ALIGNED(num_bytes)
- remove unused parameter pindex from fdisk.c, xbsd_initlabel()
Diffstat (limited to 'include')
-rw-r--r--include/platform.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h
index 763292d7a..773d6b8b2 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -55,6 +55,10 @@
55#define ATTRIBUTE_PACKED __attribute__ ((__packed__)) 55#define ATTRIBUTE_PACKED __attribute__ ((__packed__))
56#endif /* ATTRIBUTE_NORETURN */ 56#endif /* ATTRIBUTE_NORETURN */
57 57
58#ifndef ATTRIBUTE_ALIGNED
59#define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m)))
60#endif /* ATTRIBUTE_ALIGNED */
61
58/* -fwhole-program makes all symbols local. The attribute externally_visible 62/* -fwhole-program makes all symbols local. The attribute externally_visible
59 forces a symbol global. */ 63 forces a symbol global. */
60#ifndef ATTRIBUTE_EXTERNALLY_VISIBLE 64#ifndef ATTRIBUTE_EXTERNALLY_VISIBLE