10 lines
139 B
C
10 lines
139 B
C
|
|
struct expression_inheritance;
|
|
|
|
struct expression
|
|
{
|
|
const struct expression_inheritance* inheritance;
|
|
|
|
unsigned refcount;
|
|
};
|
|
|