1/* Allow packed c99 flexible arrays */
2struct {
3	int x;
4	char y[0];
5} __packed foo;
6
7