4.2.3 __packed Keyword
Specifies the data alignment of 1 for a data type.
Suggested Replacement
__attribute__((packed))
Caveats
None.
Examples
Consider migrating IAR code such as:
__packed int packed_int;
-
#pragma type_attribute=__packed int packed_int;
__attribute__((packed))
Further Information
None.