opaque1.c revision 1.3
1struct foo {
2    int a;
3    int b;
4} afoo = { 1, 2};
5
6struct foo *getfoo ()
7{
8    return (&afoo);
9}
10
11void putfoo (struct foo *foop)
12{
13}
14