xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/baz.c (revision 32d1c65c71fbdb65a012e8392a62a757dd6853e9)
1 static int bazx = 'b' + 'a' + 'z';
2 
3 int baz (int x)
4 {
5   if (x)
6     return bazx;
7   else
8     return 0;
9 }
10