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