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