blob: 64e5df30a881fe5269f97614f63aa90a4365bf7a [file] [log] [blame]
Chris Lattnere3912ee2002-12-15 17:46:18 +00001typedef struct
2{
3 void *stack;
4 unsigned size;
5 unsigned avail;
6} compile_stack_type;
7
8void foo(void*);
9void bar(compile_stack_type T, unsigned);
10
11void test() {
12 compile_stack_type CST;
13 foo(&CST);
14
15 bar(CST, 12);
16}