summaryrefslogtreecommitdiff
path: root/lisp.h
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-23 13:12:30 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-23 13:12:30 +0100
commitfddfed044719c2e8d9664a007b214dacc8a0aa36 (patch)
tree3a5d6966fb0dacae3dc8b19022ef4527b77ff439 /lisp.h
parent3a9a1921fe7a56cefe6650529a2572e9a8debc98 (diff)
fix redefinition of symbols in env, cleanup
Diffstat (limited to 'lisp.h')
-rw-r--r--lisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp.h b/lisp.h
index bb4d3ae..45986a6 100644
--- a/lisp.h
+++ b/lisp.h
@@ -49,8 +49,8 @@ value *car(value *cons);
value *cdr(value *cons);
value *reverse(value *list);
-void *print_value(value *val);
-void *println_value(value *val);
+void print_value(value *val);
+void println_value(value *val);
// environments, TODO: make this use hashtable
// symbol->val
typedef struct env {