mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-13 13:34:48 +00:00
12 lines
117 B
C
12 lines
117 B
C
|
// Compile with:
|
||
|
// g++ -gctf -shared -o libobj-v0.so obj-v0.cc
|
||
|
|
||
|
struct S
|
||
|
{
|
||
|
int mem0;
|
||
|
};
|
||
|
|
||
|
void
|
||
|
bar(struct S *s)
|
||
|
{}
|