aboutsummaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.h')
-rw-r--r--src/value.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/value.h b/src/value.h
index c2f43e3..ed30b99 100644
--- a/src/value.h
+++ b/src/value.h
@@ -39,12 +39,13 @@ struct value {
} cons;
struct proc {
- size_t argc;
- value_t *arg_keys;
env_t parent_env;
- size_t body_len;
+ value_t *arg_keys;
+ size_t argc;
+
struct token *body;
+ size_t body_len;
} proc;
struct proc_builtin {