]> git.wh0rd.org Git - ICEs.git/blob - 228889/test.i.bak
more
[ICEs.git] / 228889 / test.i.bak
1 typedef struct {
2        int *elements;
3        int count;
4        }
5          data;
6          int func_one(data foo, data bar, data buz) {
7        return func_three(foo, bar, buz);
8        }
9          int func_two(data john, data doe, data biz) {
10        some_external_function(john, doe, biz);
11        return doe.count;
12        }
13          int func_three(data jane, data hello, data world) {
14        return func_two(jane, hello, world);
15        }