mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-14 14:04:45 +00:00
12 lines
113 B
C
12 lines
113 B
C
|
struct leaf
|
||
|
{
|
||
|
int numbers[3];
|
||
|
};
|
||
|
|
||
|
struct node
|
||
|
{
|
||
|
struct leaf* ptr;
|
||
|
};
|
||
|
|
||
|
void foo(struct node *n) { (void) n; }
|