gdb/testsuite: fix gdb.trace/signal.exp on x86
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.base / opaque1.c
blobccb5fce26d6bc062cc81857665e82952d2f189e4
1 struct foo {
2 int a;
3 int b;
4 } afoo = { 1, 2};
6 struct foo *getfoo ()
8 return (&afoo);
11 void putfoo (struct foo *foop)