xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/opaque1.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1 struct foo {
2     int a;
3     int b;
4 } afoo = { 1, 2};
5 
getfoo()6 struct foo *getfoo ()
7 {
8     return (&afoo);
9 }
10 
putfoo(struct foo * foop)11 void putfoo (struct foo *foop)
12 {
13 }
14