Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_c99_union_init3.c
blobf5e8b59f4621f9ed4cad0747b377152e579c9912
1 /* C99 union initialization */
2 struct {
3 int i[10];
4 char *s;
5 } c[] = {
6 { { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
7 "foo" },
8 };