921e5a0eb4
From-SVN: r14840
19 lines
221 B
C
19 lines
221 B
C
struct
|
|
{
|
|
double a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t;
|
|
} foo, bar;
|
|
|
|
foobar ()
|
|
{
|
|
foo = bar;
|
|
xxx (&foo, &bar);
|
|
}
|
|
|
|
main ()
|
|
{
|
|
bar.g = 1.0;
|
|
foo.g = 2.0;
|
|
foobar ();
|
|
printf ("%lf\n", foo.g);
|
|
}
|