X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=testub10.git;a=blobdiff_plain;f=codeb%2Fabgabe_bi.call;fp=codeb%2Fabgabe_bi.call;h=6c129e1eb70e745d2933e22d36fa021d50d81990;hp=0000000000000000000000000000000000000000;hb=db2886cc9203ecfa582f2a7ae83e6630187329aa;hpb=b69df8b7819d52f5f432fed67fc5a317d2c19d7f diff --git a/codeb/abgabe_bi.call b/codeb/abgabe_bi.call new file mode 100644 index 0000000..6c129e1 --- /dev/null +++ b/codeb/abgabe_bi.call @@ -0,0 +1,9 @@ +typedef struct foo {long a; long b; long c;} foo; +extern foo *m(foo *, long); +foo s1={29,37,41}; +foo s2={6,28,216}; + +RET((&s1)==m(&s1,25) && (&s2)==m(&s2,0) && + s1.a==36 && s1.b==23 && s1.c==94 && + s2.a==17 && s2.b==11 && s2.c==46); +