summaryrefslogtreecommitdiff
path: root/libguile/vm.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/vm.c')
-rw-r--r--libguile/vm.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/libguile/vm.c b/libguile/vm.c
index afa888e52..4c647b0b8 100644
--- a/libguile/vm.c
+++ b/libguile/vm.c
@@ -171,6 +171,27 @@ vm_dispatch_hook (SCM vm, int hook_num)
/*
+ * The dynamic stack
+ */
+static SCM
+vm_prepare_prompt_jmpbuf (SCM vm, SCM k, SCM handler, SCM pre_unwind,
+ scm_t_uint8 inline_p, scm_t_uint8 escape_only_p)
+{
+ abort ();
+ return SCM_BOOL_F;
+}
+
+#define VM_SETJMP(jmpbuf) 0
+
+static void vm_throw (SCM vm, SCM k, SCM args) SCM_NORETURN;
+static void
+vm_throw (SCM vm, SCM k, SCM args)
+{
+ abort ();
+}
+
+
+/*
* VM Internal functions
*/