aboutsummaryrefslogtreecommitdiff
path: root/inc/term.h
diff options
context:
space:
mode:
authorMarvin Borner2023-02-13 16:52:38 +0100
committerMarvin Borner2023-02-13 16:52:38 +0100
commit4e106e78a98f7a241fc2681fefc0996a34207045 (patch)
tree0f504c180ca6d8759d0ec48aa5f7ac214d016c06 /inc/term.h
parent373c4bdc9cc01e2986f518eccc54c9d3856b7d05 (diff)
Switched to HAMT and BDWGC
Diffstat (limited to 'inc/term.h')
-rw-r--r--inc/term.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/term.h b/inc/term.h
index 578e734..8fbdad7 100644
--- a/inc/term.h
+++ b/inc/term.h
@@ -1,7 +1,9 @@
+// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
+
#ifndef TERM_H
#define TERM_H
-typedef enum { INV, ABS, APP, VAR, CLO, CACHE } term_type;
+typedef enum { INV, ABS, APP, VAR, CLOSURE, CACHE } term_type;
struct term {
term_type type;