07035c0fc6
From-SVN: r36600
13 lines
136 B
C
13 lines
136 B
C
typedef struct s {
|
|
unsigned short a;
|
|
unsigned long b __attribute__ ((packed));
|
|
} s;
|
|
|
|
s t;
|
|
|
|
int main()
|
|
{
|
|
t.b = 0;
|
|
return 0;
|
|
}
|