1struct foo
2{
3  short  d;
4  int a;
5};
6
7int
8bar (d, u)
9     short d;
10  struct foo u;
11{
12
13  u.d = d;
14  return (int) (&u);
15}
16