Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_compound_literals2.c
blobe4ffb929873fd3f5ea4e56ff7b4b7c62b4dc32e2
1 /* compound literals */
3 struct p {
4 short a, b, c, d;
5 } zz = {
6 1, 2, 3, 4
7 };
9 struct p *bar(int i)
11 static struct p q[10];
12 return &q[i];
15 foo()
17 *bar(1) = (struct p) { 1, 2, 3, 4 };