]> Git Repo - binutils.git/blob - gdb/testsuite/gdb.ctf/cross-tu-cyclic-1.c
Automatic date update in version.in
[binutils.git] / gdb / testsuite / gdb.ctf / cross-tu-cyclic-1.c
1 struct A;
2 struct B
3 {
4   int foo;
5   struct A *bar;
6 };
7
8 struct A
9 {
10   long a;
11   struct B *foo;
12 };
13
14 static struct A *foo __attribute__((used));
15
16 int main()
17 {
18 }
This page took 0.028571 seconds and 4 git commands to generate.