GDB testsuite: drop non-prototype C function header variants
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / opaque1.c
1 struct foo {
2 int a;
3 int b;
4 } afoo = { 1, 2};
5
6 struct foo *getfoo ()
7 {
8 return (&afoo);
9 }
10
11 void putfoo (struct foo *foop)
12 {
13 }
This page took 0.030436 seconds and 5 git commands to generate.