11 lines
212 B
C
11 lines
212 B
C
|
|
#include "inheritance.h"
|
|
#include "print.h"
|
|
#include "free.h"
|
|
|
|
struct expression_inheritance variable_expression_inheritance =
|
|
{
|
|
.print = variable_expression_print,
|
|
.free = free_variable_expression,
|
|
};
|
|
|