xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/grbx.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1*a5a4af3bSchristos static int grbxx = 'g' + 'r' + 'b' + 'x';
2*a5a4af3bSchristos 
grbx(int x)3*a5a4af3bSchristos int grbx (int x)
4*a5a4af3bSchristos {
5*a5a4af3bSchristos   if (x)
6*a5a4af3bSchristos     return grbxx;
7*a5a4af3bSchristos   else
8*a5a4af3bSchristos     return 0;
9*a5a4af3bSchristos }
10*a5a4af3bSchristos 
11