summaryrefslogtreecommitdiff
path: root/tests/headers/packed-bitfield.h
blob: ef23bc6ad22a2908a61bf94b28700115b8a91d70 (plain)
1
2
3
4
5
struct Date {
    unsigned char day: 5;
    unsigned char month: 4;
    signed short year: 15;
} __attribute__((packed));