11 lines
197 B
C
11 lines
197 B
C
|
|
#include "inheritance.h"
|
|
#include "print.h"
|
|
#include "free.h"
|
|
|
|
struct expression_inheritance not_expression_inheritance =
|
|
{
|
|
.print = not_expression_print,
|
|
.free = free_not_expression,
|
|
};
|
|
|