summaryrefslogtreecommitdiff
path: root/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisp.h')
-rw-r--r--lisp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp.h b/lisp.h
index 7d435ff..ef4505a 100644
--- a/lisp.h
+++ b/lisp.h
@@ -4,8 +4,6 @@
typedef struct value value;
typedef struct env env;
-void print_value(value *val);
-void println_value(value *val);
// environments, TODO: make this use hashtable
// symbol->val
typedef struct env {
@@ -21,7 +19,6 @@ value *env_lookup(env *e, const char *sym);
extern env *global_env;
-value *eval(env *e, value *val);
value *eval_pair(env *e, value *val);
value *apply(value *lambda, value *args);