18 lines
224 B
C
18 lines
224 B
C
|
|
#ifndef STRUCT_VALUE
|
|
#define STRUCT_VALUE
|
|
|
|
#include "kind.h"
|
|
|
|
struct value_inheritance;
|
|
|
|
struct value
|
|
{
|
|
const struct value_inheritance* inheritance;
|
|
|
|
enum value_kind kind;
|
|
|
|
unsigned refcount;
|
|
};
|
|
|
|
#endif
|