scripts: add onetest_gesamt for arm64
[testub10.git] / gesamt / codeb_abgabe_bi.call
1 typedef struct foo {long a; long b; long c;} foo;
2 extern foo *m(foo *, long);
3 foo s1={29,37,41};
4 foo s2={6,28,216};
5
6 RET((&s1)==m(&s1,25) && (&s2)==m(&s2,0) &&
7     s1.a==36 && s1.b==23 && s1.c==94 &&
8     s2.a==17 && s2.b==11 && s2.c==46);
9