Drop main() prototype. Syncs with NetBSD-8
[minix.git] / tests / usr.bin / xlint / lint1 / d_c9x_array_init.c
blob66f0e9ec158e80509d1d1e6323bf6be48de0f40c
1 /* C9X array initializers */
2 int foo[256] = {
3 [2] = 1,
4 [3] = 2,
5 [4 ... 5] = 3
6 };