xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/skip.c (revision 212397c69a103ae7e5eafa8731ddfae671d2dee7)
1 int foo();
2 int bar();
3 int baz(int);
4 
5 int main()
6 {
7   /* Use comma operator to sequence evaluation of bar and foo. */
8   return baz((bar(), foo()));
9 }
10 
11 int foo()
12 {
13   return 0;
14 }
15