aboutsummaryrefslogtreecommitdiff
path: root/src/builtins.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/builtins.h')
-rw-r--r--src/builtins.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/builtins.h b/src/builtins.h
index 8f9c428..8568a92 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -3,6 +3,9 @@
#include "interp.h"
+SExpRef builtin_format(Interp *interp, SExpRef sexp);
+SExpRef builtin_concat(Interp *interp, SExpRef sexp);
+SExpRef builtin_print(Interp *interp, SExpRef sexp);
SExpRef builtin_exit(Interp *interp, SExpRef sexp);
SExpRef builtin_error(Interp *interp, SExpRef sexp);
SExpRef builtin_list(Interp *interp, SExpRef sexp);
@@ -22,7 +25,7 @@ SExpRef builtin_gt(Interp *interp, SExpRef sexp);
SExpRef builtin_lt(Interp *interp, SExpRef sexp);
SExpRef builtin_ge(Interp *interp, SExpRef sexp);
SExpRef builtin_le(Interp *interp, SExpRef sexp);
-SExpRef builtin_show(Interp *interp, SExpRef sexp);
+SExpRef builtin_princ(Interp *interp, SExpRef sexp);
SExpRef builtin_gcstat(Interp *interp, SExpRef sexp);
#endif