scripts: add onetest_gesamt for arm64
[testub10.git] / gesamt / codeb_abgabe_bg.call
1 typedef struct list {struct list *next; } list;
2
3 extern long length(list *);
4 list a={NULL};
5 list b={&a};
6 list c={&b};
7 list d={&c};
8 list e={&a};
9 RET(2==length(&e) && 4==length(&d));