1 /* Compile with gcc -Wall -g -shared -o libfoo.so foo.c.  */
2 
3 struct S
4 {
5   int m0;
6 };
7 
8 int
f(struct S * s)9 f(struct S* s)
10 {return s->m0;}
11