2011-10-06 Justin Lebar <justin.lebar@gmail.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / skip.c
1 int foo();
2 int bar();
3 int baz(int, int);
4
5 int main()
6 {
7 return baz(foo(), bar());
8 }
9
10 int foo()
11 {
12 return 0;
13 }
This page took 0.029448 seconds and 4 git commands to generate.