Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git] / regress / usr.bin / xlint / lint1 / test12.c
blob51d34d450f215c1e1ba63e4edf3fc3caaea77c99
1 /* C99 union initialization */
2 union {
3 int i[10];
4 short s;
5 } c[] = {
6 { s: 2 },
7 { i: { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } },
8 };