aboutsummaryrefslogtreecommitdiffstats
path: root/scheme-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'scheme-private.h')
-rw-r--r--scheme-private.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/scheme-private.h b/scheme-private.h
index aba2319..ad8f571 100644
--- a/scheme-private.h
+++ b/scheme-private.h
@@ -56,6 +56,10 @@ struct cell {
struct cell *_cdr;
} _cons;
struct {
+ size_t _length;
+ pointer _elements[0];
+ } _vector;
+ struct {
char *_data;
const foreign_object_vtable *_vtable;
} _foreign_object;