blob: 18a9545cc28935322687725e42dcf11df43b97f5 [file] [log] [blame]
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);
}