diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 4 |
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 @@ #define ATTRIBUTE_PACKED __attribute__ ((__packed__)) #endif /* ATTRIBUTE_NORETURN */ +#ifndef ATTRIBUTE_ALIGNED +#define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) +#endif /* ATTRIBUTE_ALIGNED */ + /* -fwhole-program makes all symbols local. The attribute externally_visible forces a symbol global. */ #ifndef ATTRIBUTE_EXTERNALLY_VISIBLE |