11 lines
122 B
C
11 lines
122 B
C
|
/* Compile with gcc -Wall -g -shared -o libfoo.so foo.c. */
|
||
|
|
||
|
struct S
|
||
|
{
|
||
|
int m0;
|
||
|
};
|
||
|
|
||
|
int
|
||
|
f(struct S* s)
|
||
|
{return s->m0;}
|