elf: Support STB_LOCAL dynamic symbols
[tinycc.git] / tests / tests2 / 82_attribs_position.c
blob45039b3abcaaaed0e65da6083f8e9581811d411d
1 typedef unsigned short uint16_t;
2 typedef unsigned char uint8_t;
4 typedef union Unaligned16a {
5 uint16_t u;
6 uint8_t b[2];
7 } __attribute__((packed)) Unaligned16a;
9 typedef union __attribute__((packed)) Unaligned16b {
10 uint16_t u;
11 uint8_t b[2];
12 } Unaligned16b;
14 int main () { return 0; }