57718be8fa
minus the vendor Makefiles Provide directions for how to bootstrap the vendor sources in FREEBSD-upgrade MFC after 2 weeks Discussed with: rpaulo Sponsored by: EMC / Isilon Storage Division
7 lines
84 B
C
7 lines
84 B
C
/* C9X array initializers */
|
|
int foo[256] = {
|
|
[2] = 1,
|
|
[3] = 2,
|
|
[4 ... 5] = 3
|
|
};
|