1 #define MAX 1 2 3 struct foo { 4 int bar[MAX]; 5 }; 6 baz(const struct foo * z)7 void baz(const struct foo* z) { (void) z; } 8