blob: 86a946fc363d982074e8e831afac04469c34439e [file] [log] [blame]
int
main() {
struct s
{
int a;
short b;
} __attribute__((packed)) t;
if (sizeof (t) != (sizeof(int)+sizeof(short)))
{
return 1;
}
else
{
return 0;
}
}