tests/C_C++/sentinel_pack.c
2024-07-22 19:37:02 +02:00

9 lines
121 B
C

struct MyTightlyPackedStruct {
const char i[] = "abcdefg";
char sentinel
} __attribute__((packed));
signed main(){
}