* gdb.arch/i386-prologue.exp (skip_breakpoint): New function. Use
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / opaque1.c
CommitLineData
c906108c
SS
1struct foo {
2 int a;
3 int b;
4} afoo = { 1, 2};
5
6struct foo *getfoo ()
7{
8 return (&afoo);
9}
10
085dd6e6 11#ifdef PROTOTYPES
c906108c
SS
12void putfoo (struct foo *foop)
13#else
14void putfoo (foop)
15 struct foo *foop;
16#endif
17{
18}
This page took 0.460305 seconds and 4 git commands to generate.