aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/skip.c
blob: 565ba93fcf8ee4dffe5bef16cfdf67785e71bdc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int foo();
int bar();
int baz(int, int);

int main()
{
  return baz(foo(), bar());
}

int foo()
{
  return 0;
}