* gdb.base/help.exp: Replace most of docstrings for "info signals"
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / opaque0.c
CommitLineData
ef44eed1
SS
1/* Note that struct foo is opaque (never defined) in this file. This
2 is allowed by C since this file does not reference any members of
3 the structure. The debugger needs to be able to associate this
4 opaque structure definition with the full definition in another
5 file.
6*/
7
8struct foo *foop;
9extern struct foo *getfoo ();
10
11int main ()
12{
13 foop = getfoo ();
14 putfoo (foop);
15 return 0;
16}
This page took 0.04806 seconds and 4 git commands to generate.