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