921e5a0eb4
From-SVN: r14840
18 lines
158 B
C
18 lines
158 B
C
struct a
|
|
{ double a, b, c; };
|
|
|
|
struct b
|
|
{
|
|
struct a arr[6];
|
|
};
|
|
|
|
static struct b a_b =
|
|
{
|
|
{0,0,0},
|
|
{0,0,0},
|
|
{0,0,0},
|
|
{0,0,0},
|
|
{0,0,0},
|
|
{0,0,0},
|
|
};
|