15 lines
258 B
C
15 lines
258 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "prettyprint.h"
|
|
#include "free.h"
|
|
#include "inheritance.h"
|
|
|
|
struct value_inheritance lambda_value_inheritance = {
|
|
.prettyprint = lambda_value_prettyprint,
|
|
|
|
.free = free_lambda_value,
|
|
};
|
|
|