In relaxed mode I can create unpacked enum using next construction
typedef enum {
one = 1,
two = 2
} __attribute__((__unpacked__)) enum_t;
But in strict mode I get error " line 183: error #2104: attribute "__unpacked__" does not apply here"
I don't want to create fake enum entries.