aboutsummaryrefslogtreecommitdiff
path: root/src/primitives.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-28 15:49:31 +0800
committerMistivia <i@mistivia.com>2025-06-28 15:51:04 +0800
commit0633c6c2797bc9182b2c1888385eac6cb6caed10 (patch)
treee920255dda5b6fea67f3eef91b27c4dae069c63e /src/primitives.h
parent9efc0e78ad1609217752b5aa02fbb389d726e9c7 (diff)
add unwind-protect
Diffstat (limited to 'src/primitives.h')
-rw-r--r--src/primitives.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/primitives.h b/src/primitives.h
index f5dd8e8..a5aa2bc 100644
--- a/src/primitives.h
+++ b/src/primitives.h
@@ -28,5 +28,6 @@ SExpRef primitive_quote(Interp *interp, SExpRef sexp, bool istail);
SExpRef primitive_quasi(Interp *interp, SExpRef sexp, bool istail);
SExpRef primitive_and(Interp *interp, SExpRef sexp, bool istail);
SExpRef primitive_or(Interp *interp, SExpRef sexp, bool istail);
+SExpRef primitive_unwind_protect(Interp *interp, SExpRef sexp, bool istail);
#endif