1 #define __packed __attribute__((packed))
3 typedef unsigned char u8
;
4 typedef __UINT16_TYPE__ u16
;
5 typedef __UINT32_TYPE__ u32
;
6 typedef __UINT64_TYPE__ u64
;
15 _Static_assert(__alignof(struct b
) == 1);
16 _Static_assert( sizeof(struct b
) == 4);
23 _Static_assert(__alignof(struct c
) == 1);
24 _Static_assert( sizeof(struct c
) == 8);
27 * check-name: packed-bitfield3